aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/distrib/python/distribtest.py
blob: 428ffe2b34a296cf2eb437aa1954c128f01597aa (plain)
1
2
3
4
5
6
7
from grpc.beta import implementations

# This code doesn't do much but makes sure the native extension is loaded
# which is what we are testing here.
channel = implementations.insecure_channel('localhost', 1000)
del channel
print 'Success!'