Home | History | Annotate | Download | only in lib-dynload
__gmon_start__ _init _fini __cxa_finalize _Jv_RegisterClasses PyExc_AttributeError PyErr_SetString PyDict_Clear _Py_NoneStruct realloc malloc PyErr_NoMemory PyObject_GetAttrString PyErr_ExceptionMatches PyErr_Clear PySys_GetObject PyDict_Next PyObject_Compare PyObject_GetAttr Py_VaBuildValue PyString_FromString PyString_Format PyErr_SetObject PyObject_CallObject PyString_Size PyString_AsString PyInt_FromSsize_t PyObject_Call PyTuple_New PyExc_EOFError PyErr_SetNone feof _IO_getc PyFile_IncUseCount PyEval_SaveThread fread PyEval_RestoreThread PyFile_DecUseCount PyExc_IOError PyErr_SetFromErrno _PyObject_GC_New PyDict_New PyFile_Type PyType_IsSubtype PyFile_AsFile PyEval_GetRestricted PyObject_GC_Track PyMem_Malloc PyImport_ImportModule PyExc_ValueError PyErr_Format _PyObject_New PyExc_TypeError PyArg_ParseTuple PyArg_ParseTupleAndKeywords PyClass_Type PyObject_Size PyInstance_New PyErr_Fetch PyTuple_Pack PyErr_Restore PyInstance_NewRaw free PyObject_Free PyObject_GC_UnTrack PyMem_Free PyLong_FromVoidPtr PyDict_GetItem PyDict_SetItem fwrite PyImport_Import Py_FindMethod PyInt_FromLong PyString_FromStringAndSize PyList_Append memcpy PyLong_FromString __errno_location strtol PyBool_FromLong _PyLong_FromByteArray PyLong_FromLong PyList_New PyExc_OverflowError PyOS_string_to_double PyFloat_FromDouble PyErr_Occurred PyUnicodeUCS2_DecodeUTF8 _PyFloat_Unpack8 PyUnicodeUCS2_DecodeRawUnicodeEscape PyString_DecodeEscape PyObject_SetItem PyDict_Size PyOS_snprintf PyList_SetSlice PyTuple_GetItem PyExc_KeyError PyObject_Repr PyTuple_Size PyObject_CallFunctionObjArgs PyUnicodeUCS2_AsUTF8String _PyString_Resize memset _Py_TrueStruct _Py_ZeroStruct PyString_Type PyString_InternInPlace PyObject_SetAttr fast_save_leave PyDict_DelItem _PyThreadState_Current _Py_CheckRecursionLimit _Py_CheckRecursiveCall PyUnicode_Type PyTuple_Type PyLong_Type _PyLong_Sign PyInt_Type PyFloat_Type _PyFloat_Pack8 PyArg_UnpackTuple _PyObject_NextNotImplemented PyFunction_Type PyInstance_Type PyList_Type PyList_Size PyObject_GetIter PyDict_Type PyObject_CallMethod PyCFunction_Type PyType_Type PyObject_HasAttrString PyOS_double_to_string strlen _PyLong_NumBits _PyLong_AsByteArray PySequence_GetItem PyExc_RuntimeError PyIter_Next initcPickle PyType_Ready PyString_InternFromString PyDict_SetItemString PyRun_StringFlags PyErr_NewException PyCapsule_Import Py_InitModule4 PyModule_GetDict PyModule_AddIntConstant Py_BuildValue PyObject_GenericGetAttr PyObject_GenericSetAttr libc.so.6 _edata __bss_start _end GLIBC_2.1.3 GLIBC_2.0 
__module__ modules I/O operation on closed file copy_reg O|i:Pickler memo must be a dictionary could not find MARK persistent_load find_global unpickling stack underflow pickle data was truncated bad pickle data insecure string pickle %zd OS OSS OO Ol EXT specifies code <= 0 0123456789abcdef |i:getvalue Invalid get data NEWOBJ expected an arg tuple. state is not a dictionary c invalid load key, '%s'. S:loads while pickling an object %ld long too large to pickle () iteritems class has no name save_reduce Os __newobj__ __newobj__ arglist is empty __new__ O|i:dump O|i:dumps OO|i persistent id must be string __class__ __getinitargs__ __dict__ __getstate__ __setstate__ __name__ __main__ __reduce__ __reduce_ex__ write append read readline dispatch_table _extension_registry _inverted_registry _extension_cache __builtin__ __builtins__ cPickle.PickleError cPickle.PicklingError cPickle.UnpickleableError cPickle.UnpicklingError cPickle.BadPickleGet cStringIO.cStringIO_CAPI cPickle 1.71 __version__ HIGHEST_PROTOCOL 2.0 1.3 1.2 1.1 1.0 [sssss] format_version compatible_formats cPickle.Pickler cPickle.Unpickler cPickle.Pdata I00 I01 load() -- Load a pickle noload protocol obj clear_memo binary fast inst_persistent_id pickle protocol %d asked for; the highest available protocol is %d argument must have 'write' attribute attribute deletion is not supported fast mode: can't pickle cyclic objects including object type %s at %p argument must have 'read' and 'readline' attributes A load persistent id instruction was encountered, but no persistent_load function was specified. could not convert string to int LONG pickle has negative byte count BINSTRING pickle has negative byte count could not convert string to float BINUNICODE pickle has negative byte count Can't pickle %s: import of module %s failed Can't pickle %s: attribute lookup %s.%s failed Can't pickle %s: it's not the same object as %s.%s Can't pickle %s: extension code %s isn't an integer Can't pickle %s: extension code %ld is out of range no int where int expected in memo unregistered extension code %ld _inverted_registry[%ld] isn't a 2-tuple of strings Global and instance pickles are not supported. Attempt to getvalue() a non-list-based pickler Unexpected data in internal list NEWOBJ class argument isn't a type object NEWOBJ class argument has NULL tp_new slot state is not a dictionary unsupported pickle protocol: %d dictionary changed size during iteration Value returned by %s must be string or tuple tuple returned by %s must contain 2 through 5 elements Second element of tuple returned by %s must be a tuple Fourth element of tuple returned by %s must be an iterator, not %s Fifth element of tuple returned by %s must be an iterator, not %s args[0] from __newobj__ args has no __new__ args[0] from __newobj__ args has the wrong class dict items iterator must return 2-tuples def __str__(self): return self.args and ('%s' % self.args[0]) or '(what)' def __str__(self): a=self.args a=a and type(a[0]) or '(what)' return 'Cannot pickle %s objects' % a dump(obj, file, protocol=0) -- Write an object in pickle format to the given file. See the Pickler docstring for the meaning of optional argument proto. dumps(obj, protocol=0) -- Return a string containing an object in pickle format. See the Pickler docstring for the meaning of optional argument proto. load(file) -- Load a pickle from the given file loads(string) -- Load a pickle from the given string Pickler(file, protocol=0) -- Create a pickler. This takes a file-like object for writing a pickle data stream. The optional proto argument tells the pickler to use the given protocol; supported protocols are 0, 1, 2. The default protocol is 0, to be backwards compatible. (Protocol 0 is the only protocol that can be written to a file opened in text mode and read back successfully. When using a protocol higher than 0, make sure the file is opened in binary mode, both when pickling and unpickling.) Protocol 1 is more efficient than protocol 0; protocol 2 is more efficient than protocol 1. Specifying a negative protocol version selects the highest protocol version supported. The higher the protocol used, the more recent the version of Python needed to read the pickle produced. The file parameter must have a write() method that accepts a single string argument. It can thus be an open file object, a StringIO object, or any other custom object that meets this interface. Unpickler(file) -- Create an unpickler. noload() -- not load a pickle, but go through most of the motions This function can be used to read past a pickle without instantiating any objects or importing any modules. It can also be used to find all persistent references without instantiating any objects or importing any modules. dump(object) -- Write an object in pickle format to the object's pickle stream clear_memo() -- Clear the picklers memo getvalue() -- Finish picking a list-based pickle 8 8 8 x 8 8 8 8 8 8 8 8 8 8 X 8 x X 
@# C implementation and optimization of the Python pickle module. .NLSV0) (1taesusuiobPQc Rb Objects that know how to pickle objects Objects that know how to unpickle H @> E # ? * ' ( @( 0 P `< H D E $ @ @, B ; T # b 8 { h ( 9 8 N | b Z r y y y P . p @ ( , 0. B 0B - A J , 
GCC: (GNU) 4.2.3 (Ubuntu 4.2.3-2ubuntu7) GCC: (GNU) 4.6.x-google 20120106 (prerelease) GCC: (GNU) 4.2.3 (Ubuntu 4.2.3-2ubuntu7) 
.symtab .strtab .shstrtab .hash .dynsym .dynstr .gnu.version .gnu.version_r .rel.dyn .rel.plt .init .text .fini .rodata .eh_frame_hdr .eh_frame .ctors .dtors .jcr .data.rel.ro .dynamic .got .got.plt .data .bss .comment .debug_aranges .debug_info .debug_abbrev .debug_line .debug_ranges 
initfini.c crtstuff.c __CTOR_LIST__ __DTOR_LIST__ __JCR_LIST__ __do_global_dtors_aux completed.5467 dtor_idx.5469 frame_dummy __CTOR_END__ __FRAME_END__ __JCR_END__ __do_global_ctors_aux cPickle.c write_cStringIO PycStringIO write_none readline_cStringIO Pickler_clear Pickler_get_error PicklingError Unpickler_clear Pickler_get_memo Pickler_get_pers_func Pickle_clear_memo load_mark whichmodule __main___str cPickle_ErrFormat readline_other empty_tuple read_other readline_file read_file newPicklerobject Picklertype write_file dispatch_table write_other PdataType write_str dispatch_table_str get_Pickler kwlist.9461 Instance_New __getinitargs___str Pdata_dealloc Unpickler_dealloc Pickler_dealloc Pickler_traverse Unpickler_traverse Pickler_set_memo Pickler_set_inst_pers_func Pickler_set_pers_func marker.isra.12.part.13 UnpicklingError fast_save_enter.isra.27.part.28 Unpickler_setattr read_cStringIO find_class.part.35 Unpickler_getattr Unpickler_methods load_long_binput load_put load_binput load_pop newUnpicklerobject Unpicklertype readline_str read_str get_Unpickler load_binpersid load_long load_int load_persid load_tuple noload_extension load_counted_long load_list load_empty_dict.isra.18 load_binintx.isra.24 load_empty_list.isra.32 load_binstring load_short_binstring load_binget BadPickleGet load_long_binget load_float load_binunicode load_dup.isra.20 load_binfloat load_get load_unicode load_string load_counted_tuple.isra.17 do_setitems.isra.10 load_dict put2.part.25 save_global two_tuple extension_registry global.9322 __name___str do_append.isra.36 append_str get save_string string.9135 load_extension extension_cache inverted_registry save_unicode string.9166 Pickle_getvalue load __setstate___str __dict___str cpm_loads cpm_load Unpickler_load Unpickler_noload save save_pers save_tuple reduce.9353 batch_list batch_dict build.9354 none.9082 PickleError __class___str newobj.9355 __reduce_ex___str len.9088 buf.9087 MARKv l.9105 __reduce___str inst.9298 __getstate___str build.9300 setitems.9267 UnpickleableError setitem.9266 obj.9299 dump stop.9409 Pickler_dump cpm_dumps kwlist.10198 cpm_dump kwlist.10186 pop.9194 pop_mark.9195 len2opcode.9196 tuple.9193 append.9214 appends.9215 setitem.9244 setitems.9245 persid.9337 binpersid.9338 cPickle_module_documentation cPickle_methods Picklertype__doc__ Pickler_methods Pickler_members Pickler_getsets Unpicklertype__doc__ .L1676 .L1677 .L1678 .L1679 .L1680 .L1681 .L1682 .L1683 .L1715 .L1716 .L1717 .L1857 .L1718 .L1719 .L1720 .L1721 .L1722 .L1723 _GLOBAL_OFFSET_TABLE_ __x86.get_pc_thunk.bx __dso_handle __DTOR_END__ __x86.get_pc_thunk.cx _DYNAMIC __errno_location@@GLIBC_2.0 PyOS_string_to_double PySys_GetObject PyDict_SetItemString PyString_InternFromString _Py_ZeroStruct PyString_AsString PyImport_Import PyArg_UnpackTuple PyClass_Type PyObject_CallMethod PyIter_Next PyExc_ValueError PyType_Ready PyLong_FromVoidPtr PyInstance_Type PyFile_AsFile PyMem_Free __gmon_start__ _Jv_RegisterClasses realloc@@GLIBC_2.0 PyExc_EOFError PyFile_DecUseCount PyBool_FromLong _fini PyErr_NoMemory PyList_Type PyObject_GC_UnTrack PyString_InternInPlace PyObject_CallFunctionObjArgs PyExc_TypeError PyList_SetSlice memset@@GLIBC_2.0 PyDict_Type _PyLong_AsByteArray PyExc_KeyError _PyObject_New _IO_getc@@GLIBC_2.0 PyInt_Type _PyObject_NextNotImplemented PyOS_snprintf PyString_FromStringAndSize PyFile_IncUseCount Py_FindMethod PyDict_Next PyUnicodeUCS2_DecodeUTF8 fast_save_leave PyString_Size PyModule_AddIntConstant PyUnicodeUCS2_AsUTF8String PyErr_Format PyFloat_FromDouble PyArg_ParseTuple strtol@@GLIBC_2.0 PyObject_GetAttr PyErr_ExceptionMatches PyErr_Occurred free@@GLIBC_2.0 PyObject_GenericSetAttr Py_VaBuildValue _PyFloat_Unpack8 _PyLong_FromByteArray PyArg_ParseTupleAndKeywords PyFloat_Type PyErr_SetObject PyEval_RestoreThread PyUnicode_Type PyObject_Size _Py_TrueStruct PyString_FromString _PyObject_GC_New memcpy@@GLIBC_2.0 _Py_CheckRecursionLimit PyTuple_Pack PyInt_FromLong PyLong_FromString PyEval_SaveThread initcPickle strlen@@GLIBC_2.0 PyTuple_Type PyDict_Size PyModule_GetDict PySequence_GetItem PyDict_GetItem PyErr_Restore PyEval_GetRestricted PyObject_SetItem PyFile_Type PyObject_GenericGetAttr PyObject_GetIter PyExc_RuntimeError PyList_Size feof@@GLIBC_2.0 PyType_IsSubtype PyType_Type PyExc_IOError PyDict_DelItem _PyFloat_Pack8 PyObject_CallObject PyErr_Fetch fwrite@@GLIBC_2.0 Py_BuildValue PyObject_GetAttrString __bss_start malloc@@GLIBC_2.0 PyLong_Type PyRun_StringFlags PyUnicodeUCS2_DecodeRawUnicodeEscape _Py_NoneStruct PyExc_OverflowError PyErr_NewException PyList_Append PyObject_SetAttr PyErr_SetNone _PyLong_Sign PyObject_Call PyExc_AttributeError PyLong_FromLong PyObject_Compare _PyThreadState_Current PyInt_FromSsize_t Py_InitModule4 PyObject_Free PyTuple_Size PyImport_ImportModule _end _PyLong_NumBits PyErr_Clear PyTuple_New _Py_CheckRecursiveCall PyCFunction_Type PyTuple_GetItem _PyString_Resize PyErr_SetString PyString_Type fread@@GLIBC_2.0 PyOS_double_to_string _edata PyInstance_NewRaw PyObject_HasAttrString PyList_New PyErr_SetFromErrno PyMem_Malloc __cxa_finalize@@GLIBC_2.1.3 PyString_Format PyDict_Clear PyObject_GC_Track PyDict_SetItem PyString_DecodeEscape PyObject_Repr PyCapsule_Import PyFunction_Type _init PyDict_New PyInstance_New