org.python.modules
Class cPickle.Unpickler
java.lang.Object
org.python.modules.cPickle.Unpickler
- Enclosing class:
- cPickle
public static class cPickle.Unpickler
- extends Object
The Unpickler object. Unpickler instances are create by the factory
methods Unpickler.
- See Also:
cPickle.Unpickler(PyObject)
Method Summary |
PyObject |
load()
Unpickle and return an instance of the object represented by
the file. |
memo
public Map<String,PyObject> memo
persistent_load
public PyObject persistent_load
- For the benefit of persistency modules written using pickle,
it supports the notion of a reference to an object outside
the pickled data stream.
Such objects are referenced by a name, which is an arbitrary
string of printable ASCII characters.
The resolution of such names is not defined by the pickle module
-- the persistent object module will have to add a method
persistent_load().
find_global
public PyObject find_global
load
public PyObject load()
- Unpickle and return an instance of the object represented by
the file.
Jython homepage