make it possible to serialize tuples

This commit is contained in:
Philipp Moritz
2016-03-15 18:30:11 -07:00
parent cacda88d46
commit 2f61cc7454
3 changed files with 22 additions and 0 deletions
+1
View File
@@ -65,6 +65,7 @@ class SerializationTest(unittest.TestCase):
self.roundTripTest(42)
self.roundTripTest("hello world")
self.roundTripTest(42.0)
self.roundTripTest((1.0, "hi"))
a = np.zeros((100, 100))
res = orchpy.lib.serialize_object(a)