Private
Public Access
1
0

passing some tests on py3, all on py2

This commit is contained in:
Sander Roosendaal
2019-02-25 21:03:30 +01:00
parent 199382a700
commit 617f1e5d9f
13 changed files with 56 additions and 606 deletions

View File

@@ -206,7 +206,7 @@ def uniqify(seq, idfun=None):
def serialize_list(value,token=','):
assert(isinstance(value, list) or isinstance(value, tuple) or isinstance(value,np.ndarray))
return token.join([s for s in value])
return token.join([str(s) for s in value])
def deserialize_list(value,token=','):
if isinstance(value, list):