Closed jeroenbakker-atmind closed 3 years ago
Added support to deserialize an object that has been reduced to an int
When an object is reduced as an int the pickle contains a global int. This patch adds support for a global int.
def reduce_obj(ob): return (int, (id(ob), ))
Added support to deserialize an object that has been reduced to an int
When an object is reduced as an int the pickle contains a global int. This patch adds support for a global int.