Patching session PY2<->PY3 incompatibility issue

This commit is contained in:
Miroslav Stampar
2020-09-09 16:15:23 +02:00
parent 1658331810
commit 715063f0d4
3 changed files with 5 additions and 5 deletions

View File

@@ -4774,7 +4774,7 @@ def serializeObject(object_):
"""
Serializes given object
>>> type(serializeObject([1, 2, 3, ('a', 'b')])) == six.binary_type
>>> type(serializeObject([1, 2, 3, ('a', 'b')])) == str
True
"""