THRIFT-5923: UUID python
Client: py
Patch: CJCombrink
This closes #3330
diff --git a/test/py/TestServer.py b/test/py/TestServer.py
index 0108c98..59a06ad 100755
--- a/test/py/TestServer.py
+++ b/test/py/TestServer.py
@@ -82,6 +82,11 @@
logging.info('testBinary()') # TODO: hex output
return thing
+ def testUuid(self, thing):
+ if self.options.verbose > 1:
+ logging.info('testUuid(%s)' % thing)
+ return thing
+
def testStruct(self, thing):
if self.options.verbose > 1:
logging.info('testStruct({%s, %s, %s, %s})' % (thing.string_thing, thing.byte_thing, thing.i32_thing, thing.i64_thing))