Thrift: Added support for double type across all languages
Summary: Just for completeness cause I'm crazy. Let's never use these!
Notes: Also made thrift grammar support # style comments, so you can do this at the top of your files
#!/usr/local/bin/thrift --cpp
/**
* This is a thrift def file youc an invoke directly and gen code!
*/
blah
git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664789 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/test/py/TestClient.py b/test/py/TestClient.py
index 21d1990..3edff1c 100755
--- a/test/py/TestClient.py
+++ b/test/py/TestClient.py
@@ -32,9 +32,15 @@
print "testI32(-1)"
print client.testI32(-1)
+print "testI32(0)"
+print client.testI32(0)
+
print "testI64(-34359738368)"
print client.testI64(-34359738368)
+print "testDouble(-5.235098235)"
+print client.testDouble(-5.235098235)
+
print "testStruct({Zero, 1, -3, -5})"
x = Xtruct()
x.string_thing = "Zero"