| 
									
										
										
										
											2000-02-04 15:10:34 +00:00
										 |  |  | """Create portable serialized representations of Python objects.
 | 
					
						
							| 
									
										
										
										
											1997-12-05 19:42:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-11 08:55:36 +00:00
										 |  |  | See module copyreg for a mechanism for registering custom picklers. | 
					
						
							| 
									
										
										
										
											2003-01-27 20:16:36 +00:00
										 |  |  | See module pickletools source for extensive comments. | 
					
						
							| 
									
										
										
										
											1997-12-05 19:42:42 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | Classes: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Pickler | 
					
						
							|  |  |  |     Unpickler | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Functions: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     dump(object, file) | 
					
						
							|  |  |  |     dumps(object) -> string | 
					
						
							|  |  |  |     load(file) -> object | 
					
						
							|  |  |  |     loads(string) -> object | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Misc variables: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-02-13 03:24:48 +00:00
										 |  |  |     __version__ | 
					
						
							| 
									
										
										
										
											1997-12-05 19:42:42 +00:00
										 |  |  |     format_version | 
					
						
							|  |  |  |     compatible_formats | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-10 00:31:14 +00:00
										 |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-03-20 09:16:38 +01:00
										 |  |  | from types import FunctionType | 
					
						
							| 
									
										
										
										
											2008-05-11 08:55:36 +00:00
										 |  |  | from copyreg import dispatch_table | 
					
						
							|  |  |  | from copyreg import _extension_registry, _inverted_registry, _extension_cache | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  | from itertools import islice | 
					
						
							| 
									
										
										
										
											2015-10-10 22:42:18 +03:00
										 |  |  | from functools import partial | 
					
						
							| 
									
										
										
										
											1998-10-22 20:15:36 +00:00
										 |  |  | import sys | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  | from sys import maxsize | 
					
						
							|  |  |  | from struct import pack, unpack | 
					
						
							| 
									
										
										
										
											2001-02-18 03:10:09 +00:00
										 |  |  | import re | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  | import io | 
					
						
							| 
									
										
										
										
											2007-06-12 16:40:17 +00:00
										 |  |  | import codecs | 
					
						
							| 
									
										
										
										
											2009-06-04 20:32:06 +00:00
										 |  |  | import _compat_pickle | 
					
						
							| 
									
										
										
										
											1995-01-10 00:31:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-07 23:14:30 +00:00
										 |  |  | __all__ = ["PickleError", "PicklingError", "UnpicklingError", "Pickler", | 
					
						
							|  |  |  |            "Unpickler", "dump", "dumps", "load", "loads"] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-06 21:34:58 +00:00
										 |  |  | # Shortcut for use in isinstance testing | 
					
						
							| 
									
										
										
										
											2008-05-03 01:42:49 +00:00
										 |  |  | bytes_types = (bytes, bytearray) | 
					
						
							| 
									
										
										
										
											2007-11-06 21:34:58 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-29 00:56:17 +00:00
										 |  |  | # These are purely informational; no code uses these. | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  | format_version = "4.0"                  # File format version we write | 
					
						
							| 
									
										
										
										
											2003-01-27 22:47:53 +00:00
										 |  |  | compatible_formats = ["1.0",            # Original protocol 0 | 
					
						
							| 
									
										
										
										
											2003-01-28 16:34:19 +00:00
										 |  |  |                       "1.1",            # Protocol 0 with INST added | 
					
						
							| 
									
										
										
										
											2003-01-27 22:47:53 +00:00
										 |  |  |                       "1.2",            # Original protocol 1 | 
					
						
							|  |  |  |                       "1.3",            # Protocol 1 with BINFLOAT added | 
					
						
							|  |  |  |                       "2.0",            # Protocol 2 | 
					
						
							| 
									
										
										
										
											2008-03-17 22:56:06 +00:00
										 |  |  |                       "3.0",            # Protocol 3 | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |                       "4.0",            # Protocol 4 | 
					
						
							| 
									
										
										
										
											2003-01-27 22:47:53 +00:00
										 |  |  |                       ]                 # Old format versions we can read | 
					
						
							| 
									
										
										
										
											1995-03-14 15:09:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-07-20 00:22:32 +00:00
										 |  |  | # This is the highest protocol number we know how to read. | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  | HIGHEST_PROTOCOL = 4 | 
					
						
							| 
									
										
										
										
											2003-02-13 15:44:41 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  | # The protocol we write by default.  May be less than HIGHEST_PROTOCOL. | 
					
						
							| 
									
										
										
										
											2008-03-17 22:56:06 +00:00
										 |  |  | # We intentionally write a protocol that Python 2.x cannot read; | 
					
						
							|  |  |  | # there are too many issues with that. | 
					
						
							|  |  |  | DEFAULT_PROTOCOL = 3 | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-29 16:18:42 +00:00
										 |  |  | class PickleError(Exception): | 
					
						
							| 
									
										
										
										
											2002-05-30 12:12:04 +00:00
										 |  |  |     """A common base class for the other pickling exceptions.""" | 
					
						
							| 
									
										
										
										
											2002-05-29 16:18:42 +00:00
										 |  |  |     pass | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class PicklingError(PickleError): | 
					
						
							|  |  |  |     """This exception is raised when an unpicklable object is passed to the
 | 
					
						
							|  |  |  |     dump() method. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     pass | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class UnpicklingError(PickleError): | 
					
						
							|  |  |  |     """This exception is raised when there is a problem unpickling an object,
 | 
					
						
							|  |  |  |     such as a security violation. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Note that other exceptions may also be raised during unpickling, including | 
					
						
							|  |  |  |     (but not necessarily limited to) AttributeError, EOFError, ImportError, | 
					
						
							|  |  |  |     and IndexError. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     pass | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-29 00:56:17 +00:00
										 |  |  | # An instance of _Stop is raised by Unpickler.load_stop() in response to | 
					
						
							|  |  |  | # the STOP opcode, passing the object that is the result of unpickling. | 
					
						
							| 
									
										
										
										
											2000-12-13 18:11:56 +00:00
										 |  |  | class _Stop(Exception): | 
					
						
							|  |  |  |     def __init__(self, value): | 
					
						
							|  |  |  |         self.value = value | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 17:55:05 +00:00
										 |  |  | # Jython has PyStringMap; it's a dict subclass with string keys | 
					
						
							| 
									
										
										
										
											1998-05-27 22:38:22 +00:00
										 |  |  | try: | 
					
						
							|  |  |  |     from org.python.core import PyStringMap | 
					
						
							| 
									
										
										
										
											2013-07-04 17:43:24 -04:00
										 |  |  | except ImportError: | 
					
						
							| 
									
										
										
										
											1998-05-27 22:38:22 +00:00
										 |  |  |     PyStringMap = None | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-27 20:16:36 +00:00
										 |  |  | # Pickle opcodes.  See pickletools.py for extensive docs.  The listing | 
					
						
							|  |  |  | # here is in kind-of alphabetical order of 1-character pickle code. | 
					
						
							|  |  |  | # pickletools groups them by purpose. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  | MARK           = b'('   # push special markobject on stack | 
					
						
							|  |  |  | STOP           = b'.'   # every pickle ends with STOP | 
					
						
							|  |  |  | POP            = b'0'   # discard topmost stack item | 
					
						
							|  |  |  | POP_MARK       = b'1'   # discard stack top through topmost markobject | 
					
						
							|  |  |  | DUP            = b'2'   # duplicate top stack item | 
					
						
							|  |  |  | FLOAT          = b'F'   # push float object; decimal string argument | 
					
						
							|  |  |  | INT            = b'I'   # push integer or bool; decimal string argument | 
					
						
							|  |  |  | BININT         = b'J'   # push four-byte signed int | 
					
						
							|  |  |  | BININT1        = b'K'   # push 1-byte unsigned int | 
					
						
							|  |  |  | LONG           = b'L'   # push long; decimal string argument | 
					
						
							|  |  |  | BININT2        = b'M'   # push 2-byte unsigned int | 
					
						
							|  |  |  | NONE           = b'N'   # push None | 
					
						
							|  |  |  | PERSID         = b'P'   # push persistent object; id is taken from string arg | 
					
						
							|  |  |  | BINPERSID      = b'Q'   #  "       "         "  ;  "  "   "     "  stack | 
					
						
							|  |  |  | REDUCE         = b'R'   # apply callable to argtuple, both on stack | 
					
						
							|  |  |  | STRING         = b'S'   # push string; NL-terminated string argument | 
					
						
							|  |  |  | BINSTRING      = b'T'   # push string; counted binary string argument | 
					
						
							|  |  |  | SHORT_BINSTRING= b'U'   #  "     "   ;    "      "       "      " < 256 bytes | 
					
						
							|  |  |  | UNICODE        = b'V'   # push Unicode string; raw-unicode-escaped'd argument | 
					
						
							|  |  |  | BINUNICODE     = b'X'   #   "     "       "  ; counted UTF-8 string argument | 
					
						
							|  |  |  | APPEND         = b'a'   # append stack top to list below it | 
					
						
							|  |  |  | BUILD          = b'b'   # call __setstate__ or __dict__.update() | 
					
						
							|  |  |  | GLOBAL         = b'c'   # push self.find_class(modname, name); 2 string args | 
					
						
							|  |  |  | DICT           = b'd'   # build a dict from stack items | 
					
						
							|  |  |  | EMPTY_DICT     = b'}'   # push empty dict | 
					
						
							|  |  |  | APPENDS        = b'e'   # extend list on stack by topmost stack slice | 
					
						
							|  |  |  | GET            = b'g'   # push item from memo on stack; index is string arg | 
					
						
							|  |  |  | BINGET         = b'h'   #   "    "    "    "   "   "  ;   "    " 1-byte arg | 
					
						
							|  |  |  | INST           = b'i'   # build & push class instance | 
					
						
							|  |  |  | LONG_BINGET    = b'j'   # push item from memo on stack; index is 4-byte arg | 
					
						
							|  |  |  | LIST           = b'l'   # build list from topmost stack items | 
					
						
							|  |  |  | EMPTY_LIST     = b']'   # push empty list | 
					
						
							|  |  |  | OBJ            = b'o'   # build & push class instance | 
					
						
							|  |  |  | PUT            = b'p'   # store stack top in memo; index is string arg | 
					
						
							|  |  |  | BINPUT         = b'q'   #   "     "    "   "   " ;   "    " 1-byte arg | 
					
						
							|  |  |  | LONG_BINPUT    = b'r'   #   "     "    "   "   " ;   "    " 4-byte arg | 
					
						
							|  |  |  | SETITEM        = b's'   # add key+value pair to dict | 
					
						
							|  |  |  | TUPLE          = b't'   # build tuple from topmost stack items | 
					
						
							|  |  |  | EMPTY_TUPLE    = b')'   # push empty tuple | 
					
						
							|  |  |  | SETITEMS       = b'u'   # modify dict by adding topmost key+value pairs | 
					
						
							|  |  |  | BINFLOAT       = b'G'   # push float; arg is 8-byte float encoding | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | TRUE           = b'I01\n'  # not an opcode; see INT docs in pickletools.py | 
					
						
							|  |  |  | FALSE          = b'I00\n'  # not an opcode; see INT docs in pickletools.py | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-29 06:16:12 +00:00
										 |  |  | # Protocol 2 | 
					
						
							| 
									
										
										
										
											2003-01-28 00:22:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  | PROTO          = b'\x80'  # identify pickle protocol | 
					
						
							|  |  |  | NEWOBJ         = b'\x81'  # build object by applying cls.__new__ to argtuple | 
					
						
							|  |  |  | EXT1           = b'\x82'  # push object from extension registry; 1-byte index | 
					
						
							|  |  |  | EXT2           = b'\x83'  # ditto, but 2-byte index | 
					
						
							|  |  |  | EXT4           = b'\x84'  # ditto, but 4-byte index | 
					
						
							|  |  |  | TUPLE1         = b'\x85'  # build 1-tuple from stack top | 
					
						
							|  |  |  | TUPLE2         = b'\x86'  # build 2-tuple from two topmost stack items | 
					
						
							|  |  |  | TUPLE3         = b'\x87'  # build 3-tuple from three topmost stack items | 
					
						
							|  |  |  | NEWTRUE        = b'\x88'  # push True | 
					
						
							|  |  |  | NEWFALSE       = b'\x89'  # push False | 
					
						
							|  |  |  | LONG1          = b'\x8a'  # push long from < 256 bytes | 
					
						
							|  |  |  | LONG4          = b'\x8b'  # push really big long | 
					
						
							| 
									
										
										
										
											2003-01-27 21:44:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 04:14:51 +00:00
										 |  |  | _tuplesize2code = [EMPTY_TUPLE, TUPLE1, TUPLE2, TUPLE3] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-17 22:56:06 +00:00
										 |  |  | # Protocol 3 (Python 3.x) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | BINBYTES       = b'B'   # push bytes; counted binary string argument | 
					
						
							|  |  |  | SHORT_BINBYTES = b'C'   #  "     "   ;    "      "       "      " < 256 bytes | 
					
						
							| 
									
										
										
										
											1995-01-10 00:31:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  | # Protocol 4 | 
					
						
							|  |  |  | SHORT_BINUNICODE = b'\x8c'  # push short string; UTF-8 length < 256 bytes | 
					
						
							|  |  |  | BINUNICODE8      = b'\x8d'  # push very long string | 
					
						
							|  |  |  | BINBYTES8        = b'\x8e'  # push very long bytes string | 
					
						
							|  |  |  | EMPTY_SET        = b'\x8f'  # push empty set on the stack | 
					
						
							|  |  |  | ADDITEMS         = b'\x90'  # modify set by adding topmost stack items | 
					
						
							|  |  |  | FROZENSET        = b'\x91'  # build frozenset from topmost stack items | 
					
						
							|  |  |  | NEWOBJ_EX        = b'\x92'  # like NEWOBJ but work with keyword only arguments | 
					
						
							|  |  |  | STACK_GLOBAL     = b'\x93'  # same as GLOBAL but using names on the stacks | 
					
						
							|  |  |  | MEMOIZE          = b'\x94'  # store top of the stack in memo | 
					
						
							|  |  |  | FRAME            = b'\x95'  # indicate the beginning of a new frame | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | __all__.extend([x for x in dir() if re.match("[A-Z][A-Z0-9_]+$", x)]) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class _Framer: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     _FRAME_SIZE_TARGET = 64 * 1024 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def __init__(self, file_write): | 
					
						
							|  |  |  |         self.file_write = file_write | 
					
						
							|  |  |  |         self.current_frame = None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def start_framing(self): | 
					
						
							|  |  |  |         self.current_frame = io.BytesIO() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def end_framing(self): | 
					
						
							| 
									
										
										
										
											2013-11-23 20:30:03 -08:00
										 |  |  |         if self.current_frame and self.current_frame.tell() > 0: | 
					
						
							|  |  |  |             self.commit_frame(force=True) | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |             self.current_frame = None | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-23 20:30:03 -08:00
										 |  |  |     def commit_frame(self, force=False): | 
					
						
							|  |  |  |         if self.current_frame: | 
					
						
							|  |  |  |             f = self.current_frame | 
					
						
							|  |  |  |             if f.tell() >= self._FRAME_SIZE_TARGET or force: | 
					
						
							|  |  |  |                 with f.getbuffer() as data: | 
					
						
							|  |  |  |                     n = len(data) | 
					
						
							|  |  |  |                     write = self.file_write | 
					
						
							|  |  |  |                     write(FRAME) | 
					
						
							|  |  |  |                     write(pack("<Q", n)) | 
					
						
							|  |  |  |                     write(data) | 
					
						
							|  |  |  |                 f.seek(0) | 
					
						
							|  |  |  |                 f.truncate() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |     def write(self, data): | 
					
						
							| 
									
										
										
										
											2013-11-23 20:30:03 -08:00
										 |  |  |         if self.current_frame: | 
					
						
							|  |  |  |             return self.current_frame.write(data) | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2013-11-23 20:30:03 -08:00
										 |  |  |             return self.file_write(data) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | class _Unframer: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def __init__(self, file_read, file_readline, file_tell=None): | 
					
						
							|  |  |  |         self.file_read = file_read | 
					
						
							|  |  |  |         self.file_readline = file_readline | 
					
						
							|  |  |  |         self.current_frame = None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def read(self, n): | 
					
						
							| 
									
										
										
										
											2013-11-23 20:30:03 -08:00
										 |  |  |         if self.current_frame: | 
					
						
							|  |  |  |             data = self.current_frame.read(n) | 
					
						
							|  |  |  |             if not data and n != 0: | 
					
						
							|  |  |  |                 self.current_frame = None | 
					
						
							|  |  |  |                 return self.file_read(n) | 
					
						
							|  |  |  |             if len(data) < n: | 
					
						
							|  |  |  |                 raise UnpicklingError( | 
					
						
							|  |  |  |                     "pickle exhausted before end of frame") | 
					
						
							|  |  |  |             return data | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             return self.file_read(n) | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def readline(self): | 
					
						
							| 
									
										
										
										
											2013-11-23 20:30:03 -08:00
										 |  |  |         if self.current_frame: | 
					
						
							|  |  |  |             data = self.current_frame.readline() | 
					
						
							|  |  |  |             if not data: | 
					
						
							|  |  |  |                 self.current_frame = None | 
					
						
							|  |  |  |                 return self.file_readline() | 
					
						
							| 
									
										
										
										
											2015-01-26 10:37:01 +02:00
										 |  |  |             if data[-1] != b'\n'[0]: | 
					
						
							| 
									
										
										
										
											2013-11-23 20:30:03 -08:00
										 |  |  |                 raise UnpicklingError( | 
					
						
							|  |  |  |                     "pickle exhausted before end of frame") | 
					
						
							|  |  |  |             return data | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2013-11-23 20:30:03 -08:00
										 |  |  |             return self.file_readline() | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-23 20:30:03 -08:00
										 |  |  |     def load_frame(self, frame_size): | 
					
						
							|  |  |  |         if self.current_frame and self.current_frame.read() != b'': | 
					
						
							|  |  |  |             raise UnpicklingError( | 
					
						
							|  |  |  |                 "beginning of a new frame before end of current frame") | 
					
						
							|  |  |  |         self.current_frame = io.BytesIO(self.file_read(frame_size)) | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # Tools used for pickling. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-31 14:07:24 +03:00
										 |  |  | def _getattribute(obj, name): | 
					
						
							|  |  |  |     for subpath in name.split('.'): | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |         if subpath == '<locals>': | 
					
						
							|  |  |  |             raise AttributeError("Can't get local attribute {!r} on {!r}" | 
					
						
							|  |  |  |                                  .format(name, obj)) | 
					
						
							|  |  |  |         try: | 
					
						
							| 
									
										
										
										
											2015-03-31 14:07:24 +03:00
										 |  |  |             parent = obj | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |             obj = getattr(obj, subpath) | 
					
						
							|  |  |  |         except AttributeError: | 
					
						
							|  |  |  |             raise AttributeError("Can't get attribute {!r} on {!r}" | 
					
						
							| 
									
										
										
										
											2017-04-05 09:37:24 +03:00
										 |  |  |                                  .format(name, obj)) from None | 
					
						
							| 
									
										
										
										
											2015-03-31 14:07:24 +03:00
										 |  |  |     return obj, parent | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-31 14:07:24 +03:00
										 |  |  | def whichmodule(obj, name): | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |     """Find the module an object belong to.""" | 
					
						
							|  |  |  |     module_name = getattr(obj, '__module__', None) | 
					
						
							|  |  |  |     if module_name is not None: | 
					
						
							|  |  |  |         return module_name | 
					
						
							| 
									
										
										
										
											2014-10-04 22:15:27 +02:00
										 |  |  |     # Protect the iteration by using a list copy of sys.modules against dynamic | 
					
						
							|  |  |  |     # modules that trigger imports of other modules upon calls to getattr. | 
					
						
							|  |  |  |     for module_name, module in list(sys.modules.items()): | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |         if module_name == '__main__' or module is None: | 
					
						
							|  |  |  |             continue | 
					
						
							|  |  |  |         try: | 
					
						
							| 
									
										
										
										
											2015-03-31 14:07:24 +03:00
										 |  |  |             if _getattribute(module, name)[0] is obj: | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |                 return module_name | 
					
						
							|  |  |  |         except AttributeError: | 
					
						
							|  |  |  |             pass | 
					
						
							|  |  |  |     return '__main__' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def encode_long(x): | 
					
						
							|  |  |  |     r"""Encode a long to a two's complement little-endian binary string.
 | 
					
						
							|  |  |  |     Note that 0 is a special case, returning an empty string, to save a | 
					
						
							|  |  |  |     byte in the LONG1 pickling context. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     >>> encode_long(0) | 
					
						
							|  |  |  |     b'' | 
					
						
							|  |  |  |     >>> encode_long(255) | 
					
						
							|  |  |  |     b'\xff\x00' | 
					
						
							|  |  |  |     >>> encode_long(32767) | 
					
						
							|  |  |  |     b'\xff\x7f' | 
					
						
							|  |  |  |     >>> encode_long(-256) | 
					
						
							|  |  |  |     b'\x00\xff' | 
					
						
							|  |  |  |     >>> encode_long(-32768) | 
					
						
							|  |  |  |     b'\x00\x80' | 
					
						
							|  |  |  |     >>> encode_long(-128) | 
					
						
							|  |  |  |     b'\x80' | 
					
						
							|  |  |  |     >>> encode_long(127) | 
					
						
							|  |  |  |     b'\x7f' | 
					
						
							|  |  |  |     >>> | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     if x == 0: | 
					
						
							|  |  |  |         return b'' | 
					
						
							|  |  |  |     nbytes = (x.bit_length() >> 3) + 1 | 
					
						
							|  |  |  |     result = x.to_bytes(nbytes, byteorder='little', signed=True) | 
					
						
							|  |  |  |     if x < 0 and nbytes > 1: | 
					
						
							|  |  |  |         if result[-1] == 0xff and (result[-2] & 0x80) != 0: | 
					
						
							|  |  |  |             result = result[:-1] | 
					
						
							|  |  |  |     return result | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def decode_long(data): | 
					
						
							|  |  |  |     r"""Decode a long from a two's complement little-endian binary string.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     >>> decode_long(b'') | 
					
						
							|  |  |  |     0 | 
					
						
							|  |  |  |     >>> decode_long(b"\xff\x00") | 
					
						
							|  |  |  |     255 | 
					
						
							|  |  |  |     >>> decode_long(b"\xff\x7f") | 
					
						
							|  |  |  |     32767 | 
					
						
							|  |  |  |     >>> decode_long(b"\x00\xff") | 
					
						
							|  |  |  |     -256 | 
					
						
							|  |  |  |     >>> decode_long(b"\x00\x80") | 
					
						
							|  |  |  |     -32768 | 
					
						
							|  |  |  |     >>> decode_long(b"\x80") | 
					
						
							|  |  |  |     -128 | 
					
						
							|  |  |  |     >>> decode_long(b"\x7f") | 
					
						
							|  |  |  |     127 | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     return int.from_bytes(data, byteorder='little', signed=True) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-18 03:10:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 15:19:53 +00:00
										 |  |  | # Pickling machinery | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  | class _Pickler: | 
					
						
							| 
									
										
										
										
											1995-01-10 00:31:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-04 20:32:06 +00:00
										 |  |  |     def __init__(self, file, protocol=None, *, fix_imports=True): | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |         """This takes a binary file for writing a pickle data stream.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-07 01:09:27 -08:00
										 |  |  |         The optional *protocol* argument tells the pickler to use the | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |         given protocol; supported protocols are 0, 1, 2, 3 and 4.  The | 
					
						
							| 
									
										
										
										
											2013-12-07 01:09:27 -08:00
										 |  |  |         default protocol is 3; a backward-incompatible protocol designed | 
					
						
							|  |  |  |         for Python 3. | 
					
						
							| 
									
										
										
										
											2003-01-27 22:47:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-31 19:42:31 +00:00
										 |  |  |         Specifying a negative protocol version selects the highest | 
					
						
							| 
									
										
										
										
											2003-02-01 16:45:06 +00:00
										 |  |  |         protocol version supported.  The higher the protocol used, the | 
					
						
							|  |  |  |         more recent the version of Python needed to read the pickle | 
					
						
							|  |  |  |         produced. | 
					
						
							| 
									
										
										
										
											2002-05-29 16:18:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-07 01:09:27 -08:00
										 |  |  |         The *file* argument must have a write() method that accepts a | 
					
						
							|  |  |  |         single bytes argument. It can thus be a file object opened for | 
					
						
							| 
									
										
										
										
											2015-11-02 03:37:02 +00:00
										 |  |  |         binary writing, an io.BytesIO instance, or any other custom | 
					
						
							| 
									
										
										
										
											2013-12-07 01:09:27 -08:00
										 |  |  |         object that meets this interface. | 
					
						
							| 
									
										
										
										
											2009-06-04 20:32:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-07 01:09:27 -08:00
										 |  |  |         If *fix_imports* is True and *protocol* is less than 3, pickle | 
					
						
							|  |  |  |         will try to map the new Python 3 names to the old module names | 
					
						
							|  |  |  |         used in Python 2, so that the pickle data stream is readable | 
					
						
							|  |  |  |         with Python 2. | 
					
						
							| 
									
										
										
										
											2002-05-29 16:18:42 +00:00
										 |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2003-02-09 17:19:41 +00:00
										 |  |  |         if protocol is None: | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |             protocol = DEFAULT_PROTOCOL | 
					
						
							| 
									
										
										
										
											2003-02-09 17:19:41 +00:00
										 |  |  |         if protocol < 0: | 
					
						
							| 
									
										
										
										
											2003-02-13 15:44:41 +00:00
										 |  |  |             protocol = HIGHEST_PROTOCOL | 
					
						
							|  |  |  |         elif not 0 <= protocol <= HIGHEST_PROTOCOL: | 
					
						
							|  |  |  |             raise ValueError("pickle protocol must be <= %d" % HIGHEST_PROTOCOL) | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |         try: | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |             self._file_write = file.write | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |         except AttributeError: | 
					
						
							|  |  |  |             raise TypeError("file must have a 'write' attribute") | 
					
						
							| 
									
										
										
										
											2013-11-23 20:30:03 -08:00
										 |  |  |         self.framer = _Framer(self._file_write) | 
					
						
							|  |  |  |         self.write = self.framer.write | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |         self.memo = {} | 
					
						
							| 
									
										
										
										
											2003-02-09 17:19:41 +00:00
										 |  |  |         self.proto = int(protocol) | 
					
						
							|  |  |  |         self.bin = protocol >= 1 | 
					
						
							| 
									
										
										
										
											2003-01-29 17:58:45 +00:00
										 |  |  |         self.fast = 0 | 
					
						
							| 
									
										
										
										
											2009-06-04 20:32:06 +00:00
										 |  |  |         self.fix_imports = fix_imports and protocol < 3 | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-05-01 20:33:53 +00:00
										 |  |  |     def clear_memo(self): | 
					
						
							| 
									
										
										
										
											2002-05-29 16:18:42 +00:00
										 |  |  |         """Clears the pickler's "memo".
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         The memo is the data structure that remembers which objects the | 
					
						
							| 
									
										
										
										
											2013-12-07 01:09:27 -08:00
										 |  |  |         pickler has already seen, so that shared or recursive objects | 
					
						
							|  |  |  |         are pickled by reference and not by value.  This method is | 
					
						
							|  |  |  |         useful when re-using picklers. | 
					
						
							| 
									
										
										
										
											2002-05-29 16:18:42 +00:00
										 |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2002-05-01 20:33:53 +00:00
										 |  |  |         self.memo.clear() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |     def dump(self, obj): | 
					
						
							| 
									
										
										
										
											2003-02-01 16:45:06 +00:00
										 |  |  |         """Write a pickled representation of obj to the open file.""" | 
					
						
							| 
									
										
										
										
											2008-12-27 09:30:39 +00:00
										 |  |  |         # Check whether Pickler was initialized correctly. This is | 
					
						
							|  |  |  |         # only needed to mimic the behavior of _pickle.Pickler.dump(). | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |         if not hasattr(self, "_file_write"): | 
					
						
							| 
									
										
										
										
											2008-12-27 09:30:39 +00:00
										 |  |  |             raise PicklingError("Pickler.__init__() was not called by " | 
					
						
							|  |  |  |                                 "%s.__init__()" % (self.__class__.__name__,)) | 
					
						
							| 
									
										
										
										
											2003-01-28 03:49:52 +00:00
										 |  |  |         if self.proto >= 2: | 
					
						
							| 
									
										
										
										
											2013-11-23 20:30:03 -08:00
										 |  |  |             self.write(PROTO + pack("<B", self.proto)) | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |         if self.proto >= 4: | 
					
						
							| 
									
										
										
										
											2013-11-23 20:30:03 -08:00
										 |  |  |             self.framer.start_framing() | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |         self.save(obj) | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |         self.write(STOP) | 
					
						
							| 
									
										
										
										
											2013-11-23 20:30:03 -08:00
										 |  |  |         self.framer.end_framing() | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-24 19:29:52 +00:00
										 |  |  |     def memoize(self, obj): | 
					
						
							|  |  |  |         """Store an object in the memo.""" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-27 21:22:10 +00:00
										 |  |  |         # The Pickler memo is a dictionary mapping object ids to 2-tuples | 
					
						
							|  |  |  |         # that contain the Unpickler memo key and the object being memoized. | 
					
						
							|  |  |  |         # The memo key is written to the pickle and will become | 
					
						
							| 
									
										
										
										
											2003-01-24 19:29:52 +00:00
										 |  |  |         # the key in the Unpickler's memo.  The object is stored in the | 
					
						
							| 
									
										
										
										
											2003-01-27 21:22:10 +00:00
										 |  |  |         # Pickler memo so that transient objects are kept alive during | 
					
						
							|  |  |  |         # pickling. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # The use of the Unpickler memo length as the memo key is just a | 
					
						
							|  |  |  |         # convention.  The only requirement is that the memo values be unique. | 
					
						
							|  |  |  |         # But there appears no advantage to any other scheme, and this | 
					
						
							| 
									
										
										
										
											2003-01-28 00:24:43 +00:00
										 |  |  |         # scheme allows the Unpickler memo to be implemented as a plain (but | 
					
						
							| 
									
										
										
										
											2003-01-27 21:22:10 +00:00
										 |  |  |         # growable) array, indexed by memo key. | 
					
						
							| 
									
										
										
										
											2003-01-29 17:58:45 +00:00
										 |  |  |         if self.fast: | 
					
						
							|  |  |  |             return | 
					
						
							| 
									
										
										
										
											2003-01-30 06:37:41 +00:00
										 |  |  |         assert id(obj) not in self.memo | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |         idx = len(self.memo) | 
					
						
							|  |  |  |         self.write(self.put(idx)) | 
					
						
							|  |  |  |         self.memo[id(obj)] = idx, obj | 
					
						
							| 
									
										
										
										
											2003-01-24 19:29:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-27 21:25:41 +00:00
										 |  |  |     # Return a PUT (BINPUT, LONG_BINPUT) opcode string, with argument i. | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |     def put(self, idx): | 
					
						
							|  |  |  |         if self.proto >= 4: | 
					
						
							|  |  |  |             return MEMOIZE | 
					
						
							|  |  |  |         elif self.bin: | 
					
						
							|  |  |  |             if idx < 256: | 
					
						
							|  |  |  |                 return BINPUT + pack("<B", idx) | 
					
						
							| 
									
										
										
										
											2003-01-28 03:03:08 +00:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |                 return LONG_BINPUT + pack("<I", idx) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             return PUT + repr(idx).encode("ascii") + b'\n' | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-27 21:25:41 +00:00
										 |  |  |     # Return a GET (BINGET, LONG_BINGET) opcode string, with argument i. | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |     def get(self, i): | 
					
						
							| 
									
										
										
										
											2001-04-10 02:48:53 +00:00
										 |  |  |         if self.bin: | 
					
						
							|  |  |  |             if i < 256: | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |                 return BINGET + pack("<B", i) | 
					
						
							| 
									
										
										
										
											2003-01-28 03:03:08 +00:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2012-11-24 20:40:21 +01:00
										 |  |  |                 return LONG_BINGET + pack("<I", i) | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-08-27 17:23:59 +00:00
										 |  |  |         return GET + repr(i).encode("ascii") + b'\n' | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |     def save(self, obj, save_persistent_id=True): | 
					
						
							| 
									
										
										
										
											2013-11-23 20:30:03 -08:00
										 |  |  |         self.framer.commit_frame() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 16:34:19 +00:00
										 |  |  |         # Check for persistent id (defined by a subclass) | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |         pid = self.persistent_id(obj) | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |         if pid is not None and save_persistent_id: | 
					
						
							| 
									
										
										
										
											2002-11-13 22:01:27 +00:00
										 |  |  |             self.save_pers(pid) | 
					
						
							|  |  |  |             return | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 16:34:19 +00:00
										 |  |  |         # Check the memo | 
					
						
							|  |  |  |         x = self.memo.get(id(obj)) | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         if x is not None: | 
					
						
							| 
									
										
										
										
											2003-01-28 16:34:19 +00:00
										 |  |  |             self.write(self.get(x[0])) | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |             return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 16:34:19 +00:00
										 |  |  |         # Check the type dispatch table | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |         t = type(obj) | 
					
						
							| 
									
										
										
										
											2003-01-28 16:34:19 +00:00
										 |  |  |         f = self.dispatch.get(t) | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         if f is not None: | 
					
						
							| 
									
										
										
										
											2003-01-28 16:34:19 +00:00
										 |  |  |             f(self, obj) # Call unbound method with explicit self | 
					
						
							| 
									
										
										
										
											2003-01-28 00:48:09 +00:00
										 |  |  |             return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-04 18:31:48 +01:00
										 |  |  |         # Check private dispatch table if any, or else copyreg.dispatch_table | 
					
						
							|  |  |  |         reduce = getattr(self, 'dispatch_table', dispatch_table).get(t) | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         if reduce is not None: | 
					
						
							| 
									
										
										
										
											2003-02-18 22:05:12 +00:00
										 |  |  |             rv = reduce(obj) | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2011-10-04 09:23:04 +02:00
										 |  |  |             # Check for a class with a custom metaclass; treat as regular class | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 issc = issubclass(t, type) | 
					
						
							|  |  |  |             except TypeError: # t is not a class (old Boost; see SF #502085) | 
					
						
							|  |  |  |                 issc = False | 
					
						
							|  |  |  |             if issc: | 
					
						
							|  |  |  |                 self.save_global(obj) | 
					
						
							|  |  |  |                 return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-18 22:05:12 +00:00
										 |  |  |             # Check for a __reduce_ex__ method, fall back to __reduce__ | 
					
						
							|  |  |  |             reduce = getattr(obj, "__reduce_ex__", None) | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |             if reduce is not None: | 
					
						
							| 
									
										
										
										
											2003-02-18 22:05:12 +00:00
										 |  |  |                 rv = reduce(self.proto) | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 reduce = getattr(obj, "__reduce__", None) | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |                 if reduce is not None: | 
					
						
							| 
									
										
										
										
											2003-02-18 22:05:12 +00:00
										 |  |  |                     rv = reduce() | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     raise PicklingError("Can't pickle %r object: %r" % | 
					
						
							|  |  |  |                                         (t.__name__, obj)) | 
					
						
							| 
									
										
										
										
											2003-01-28 16:34:19 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Check for string returned by reduce(), meaning "save as global" | 
					
						
							| 
									
										
										
										
											2007-10-16 18:12:55 +00:00
										 |  |  |         if isinstance(rv, str): | 
					
						
							| 
									
										
										
										
											2003-01-28 16:34:19 +00:00
										 |  |  |             self.save_global(obj, rv) | 
					
						
							| 
									
										
										
										
											2003-01-28 00:48:09 +00:00
										 |  |  |             return | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 16:34:19 +00:00
										 |  |  |         # Assert that reduce() returned a tuple | 
					
						
							| 
									
										
										
										
											2007-06-07 23:15:56 +00:00
										 |  |  |         if not isinstance(rv, tuple): | 
					
						
							| 
									
										
										
										
											2003-01-28 16:34:19 +00:00
										 |  |  |             raise PicklingError("%s must return string or tuple" % reduce) | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-31 18:53:21 +00:00
										 |  |  |         # Assert that it returned an appropriately sized tuple | 
					
						
							| 
									
										
										
										
											2003-01-28 16:34:19 +00:00
										 |  |  |         l = len(rv) | 
					
						
							| 
									
										
										
										
											2003-01-31 18:53:21 +00:00
										 |  |  |         if not (2 <= l <= 5): | 
					
						
							| 
									
										
										
										
											2003-01-28 16:34:19 +00:00
										 |  |  |             raise PicklingError("Tuple returned by %s must have " | 
					
						
							| 
									
										
										
										
											2003-01-31 18:53:21 +00:00
										 |  |  |                                 "two to five elements" % reduce) | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 16:34:19 +00:00
										 |  |  |         # Save the reduce() output and finally memoize the object | 
					
						
							| 
									
										
										
										
											2003-01-31 18:53:21 +00:00
										 |  |  |         self.save_reduce(obj=obj, *rv) | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |     def persistent_id(self, obj): | 
					
						
							| 
									
										
										
										
											2003-01-28 16:34:19 +00:00
										 |  |  |         # This exists so a subclass can override it | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |         return None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def save_pers(self, pid): | 
					
						
							| 
									
										
										
										
											2003-01-28 16:34:19 +00:00
										 |  |  |         # Save a persistent id reference | 
					
						
							| 
									
										
										
										
											2003-01-28 01:03:10 +00:00
										 |  |  |         if self.bin: | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |             self.save(pid, save_persistent_id=False) | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |             self.write(BINPERSID) | 
					
						
							| 
									
										
										
										
											2003-01-28 01:03:10 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2016-07-17 11:24:17 +03:00
										 |  |  |             try: | 
					
						
							|  |  |  |                 self.write(PERSID + str(pid).encode("ascii") + b'\n') | 
					
						
							|  |  |  |             except UnicodeEncodeError: | 
					
						
							|  |  |  |                 raise PicklingError( | 
					
						
							|  |  |  |                     "persistent IDs in protocol 0 must be ASCII strings") | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |     def save_reduce(self, func, args, state=None, listitems=None, | 
					
						
							|  |  |  |                     dictitems=None, obj=None): | 
					
						
							| 
									
										
										
										
											2003-06-29 16:59:59 +00:00
										 |  |  |         # This API is called by some subclasses | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-07 23:15:56 +00:00
										 |  |  |         if not isinstance(args, tuple): | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |             raise PicklingError("args from save_reduce() must be a tuple") | 
					
						
							| 
									
										
										
										
											2011-10-28 14:45:05 +02:00
										 |  |  |         if not callable(func): | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |             raise PicklingError("func from save_reduce() must be callable") | 
					
						
							| 
									
										
										
										
											2003-01-28 16:34:19 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         save = self.save | 
					
						
							|  |  |  |         write = self.write | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |         func_name = getattr(func, "__name__", "") | 
					
						
							| 
									
										
										
										
											2015-10-10 22:42:18 +03:00
										 |  |  |         if self.proto >= 2 and func_name == "__newobj_ex__": | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |             cls, args, kwargs = args | 
					
						
							|  |  |  |             if not hasattr(cls, "__new__"): | 
					
						
							|  |  |  |                 raise PicklingError("args[0] from {} args has no __new__" | 
					
						
							|  |  |  |                                     .format(func_name)) | 
					
						
							|  |  |  |             if obj is not None and cls is not obj.__class__: | 
					
						
							|  |  |  |                 raise PicklingError("args[0] from {} args has the wrong class" | 
					
						
							|  |  |  |                                     .format(func_name)) | 
					
						
							| 
									
										
										
										
											2015-10-10 22:42:18 +03:00
										 |  |  |             if self.proto >= 4: | 
					
						
							|  |  |  |                 save(cls) | 
					
						
							|  |  |  |                 save(args) | 
					
						
							|  |  |  |                 save(kwargs) | 
					
						
							|  |  |  |                 write(NEWOBJ_EX) | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 func = partial(cls.__new__, cls, *args, **kwargs) | 
					
						
							|  |  |  |                 save(func) | 
					
						
							|  |  |  |                 save(()) | 
					
						
							|  |  |  |                 write(REDUCE) | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |         elif self.proto >= 2 and func_name == "__newobj__": | 
					
						
							|  |  |  |             # A __reduce__ implementation can direct protocol 2 or newer to | 
					
						
							| 
									
										
										
										
											2003-01-31 16:51:45 +00:00
										 |  |  |             # use the more efficient NEWOBJ opcode, while still | 
					
						
							|  |  |  |             # allowing protocol 0 and 1 to work normally.  For this to | 
					
						
							|  |  |  |             # work, the function returned by __reduce__ should be | 
					
						
							|  |  |  |             # called __newobj__, and its first argument should be a | 
					
						
							| 
									
										
										
										
											2011-12-12 18:54:29 +01:00
										 |  |  |             # class.  The implementation for __newobj__ | 
					
						
							| 
									
										
										
										
											2003-01-31 16:51:45 +00:00
										 |  |  |             # should be as follows, although pickle has no way to | 
					
						
							|  |  |  |             # verify this: | 
					
						
							|  |  |  |             # | 
					
						
							|  |  |  |             # def __newobj__(cls, *args): | 
					
						
							|  |  |  |             #     return cls.__new__(cls, *args) | 
					
						
							|  |  |  |             # | 
					
						
							|  |  |  |             # Protocols 0 and 1 will pickle a reference to __newobj__, | 
					
						
							|  |  |  |             # while protocol 2 (and above) will pickle a reference to | 
					
						
							|  |  |  |             # cls, the remaining args tuple, and the NEWOBJ code, | 
					
						
							|  |  |  |             # which calls cls.__new__(cls, *args) at unpickling time | 
					
						
							|  |  |  |             # (see load_newobj below).  If __reduce__ returns a | 
					
						
							|  |  |  |             # three-tuple, the state from the third tuple item will be | 
					
						
							|  |  |  |             # pickled regardless of the protocol, calling __setstate__ | 
					
						
							|  |  |  |             # at unpickling time (see load_build below). | 
					
						
							|  |  |  |             # | 
					
						
							|  |  |  |             # Note that no standard __newobj__ implementation exists; | 
					
						
							|  |  |  |             # you have to provide your own.  This is to enforce | 
					
						
							|  |  |  |             # compatibility with Python 2.2 (pickles written using | 
					
						
							|  |  |  |             # protocol 0 or 1 in Python 2.3 should be unpicklable by | 
					
						
							|  |  |  |             # Python 2.2). | 
					
						
							|  |  |  |             cls = args[0] | 
					
						
							|  |  |  |             if not hasattr(cls, "__new__"): | 
					
						
							|  |  |  |                 raise PicklingError( | 
					
						
							|  |  |  |                     "args[0] from __newobj__ args has no __new__") | 
					
						
							| 
									
										
										
										
											2003-01-31 17:17:49 +00:00
										 |  |  |             if obj is not None and cls is not obj.__class__: | 
					
						
							|  |  |  |                 raise PicklingError( | 
					
						
							|  |  |  |                     "args[0] from __newobj__ args has the wrong class") | 
					
						
							| 
									
										
										
										
											2003-01-31 16:51:45 +00:00
										 |  |  |             args = args[1:] | 
					
						
							|  |  |  |             save(cls) | 
					
						
							|  |  |  |             save(args) | 
					
						
							|  |  |  |             write(NEWOBJ) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             save(func) | 
					
						
							|  |  |  |             save(args) | 
					
						
							|  |  |  |             write(REDUCE) | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-31 17:17:49 +00:00
										 |  |  |         if obj is not None: | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |             # If the object is already in the memo, this means it is | 
					
						
							|  |  |  |             # recursive. In this case, throw away everything we put on the | 
					
						
							|  |  |  |             # stack, and fetch the object back from the memo. | 
					
						
							|  |  |  |             if id(obj) in self.memo: | 
					
						
							|  |  |  |                 write(POP + self.get(self.memo[id(obj)][0])) | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 self.memoize(obj) | 
					
						
							| 
									
										
										
										
											2003-01-31 17:17:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-31 18:53:21 +00:00
										 |  |  |         # More new special cases (that work with older protocols as | 
					
						
							|  |  |  |         # well): when __reduce__ returns a tuple with 4 or 5 items, | 
					
						
							|  |  |  |         # the 4th and 5th item should be iterators that provide list | 
					
						
							|  |  |  |         # items and dict items (as (key, value) tuples), or None. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if listitems is not None: | 
					
						
							|  |  |  |             self._batch_appends(listitems) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if dictitems is not None: | 
					
						
							|  |  |  |             self._batch_setitems(dictitems) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-04-10 02:48:53 +00:00
										 |  |  |         if state is not None: | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |             save(state) | 
					
						
							|  |  |  |             write(BUILD) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 16:34:19 +00:00
										 |  |  |     # Methods below this point are dispatched through the dispatch table | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |     dispatch = {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |     def save_none(self, obj): | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |         self.write(NONE) | 
					
						
							| 
									
										
										
										
											2007-06-07 23:15:56 +00:00
										 |  |  |     dispatch[type(None)] = save_none | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |     def save_bool(self, obj): | 
					
						
							| 
									
										
										
										
											2003-01-28 04:25:27 +00:00
										 |  |  |         if self.proto >= 2: | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |             self.write(NEWTRUE if obj else NEWFALSE) | 
					
						
							| 
									
										
										
										
											2003-01-28 04:25:27 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |             self.write(TRUE if obj else FALSE) | 
					
						
							| 
									
										
										
										
											2002-04-03 22:41:51 +00:00
										 |  |  |     dispatch[bool] = save_bool | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |     def save_long(self, obj): | 
					
						
							| 
									
										
										
										
											2007-01-14 03:31:43 +00:00
										 |  |  |         if self.bin: | 
					
						
							|  |  |  |             # If the int is small enough to fit in a signed 4-byte 2's-comp | 
					
						
							|  |  |  |             # format, we can store it more efficiently than the general | 
					
						
							|  |  |  |             # case. | 
					
						
							|  |  |  |             # First one- and two-byte unsigned ints: | 
					
						
							|  |  |  |             if obj >= 0: | 
					
						
							|  |  |  |                 if obj <= 0xff: | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |                     self.write(BININT1 + pack("<B", obj)) | 
					
						
							| 
									
										
										
										
											2007-01-14 03:31:43 +00:00
										 |  |  |                     return | 
					
						
							|  |  |  |                 if obj <= 0xffff: | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |                     self.write(BININT2 + pack("<H", obj)) | 
					
						
							| 
									
										
										
										
											2007-01-14 03:31:43 +00:00
										 |  |  |                     return | 
					
						
							|  |  |  |             # Next check for 4-byte signed ints: | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |             if -0x80000000 <= obj <= 0x7fffffff: | 
					
						
							| 
									
										
										
										
											2007-01-14 03:31:43 +00:00
										 |  |  |                 self.write(BININT + pack("<i", obj)) | 
					
						
							|  |  |  |                 return | 
					
						
							| 
									
										
										
										
											2003-01-28 03:49:52 +00:00
										 |  |  |         if self.proto >= 2: | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |             encoded = encode_long(obj) | 
					
						
							|  |  |  |             n = len(encoded) | 
					
						
							| 
									
										
										
										
											2003-01-28 03:49:52 +00:00
										 |  |  |             if n < 256: | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |                 self.write(LONG1 + pack("<B", n) + encoded) | 
					
						
							| 
									
										
										
										
											2003-01-28 03:49:52 +00:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |                 self.write(LONG4 + pack("<i", n) + encoded) | 
					
						
							| 
									
										
											  
											
												cPickle.c:  Full support for the new LONG1 and LONG4.  Added comments.
Assorted code cleanups; e.g., sizeof(char) is 1 by definition, so there's
no need to do things like multiply by sizeof(char) in hairy malloc
arguments.  Fixed an undetected-overflow bug in readline_file().
longobject.c:  Fixed a really stupid bug in the new _PyLong_NumBits.
pickle.py:  Fixed stupid bug in save_long():  When proto is 2, it
wrote LONG1 or LONG4, but forgot to return then -- it went on to
append the proto 1 LONG opcode too.
Fixed equally stupid cancelling bugs in load_long1() and
load_long4():  they *returned* the unpickled long instead of pushing
it on the stack.  The return values were ignored.  Tests passed
before only because save_long() pickled the long twice.
Fixed bugs in encode_long().
Noted that decode_long() is quadratic-time despite our hopes,
because long(string, 16) is still quadratic-time in len(string).
It's hex() that's linear-time.  I don't know a way to make decode_long()
linear-time in Python, short of maybe transforming the 256's-complement
bytes into marshal's funky internal format, and letting marshal decode
that.  It would be more valuable to make long(string, 16) linear time.
pickletester.py:  Added a global "protocols" vector so tests can try
all the protocols in a sane way.  Changed test_ints() and test_unicode()
to do so.  Added a new test_long(), but the tail end of it is disabled
because it "takes forever" under pickle.py (but runs very quickly under
cPickle:  cPickle proto 2 for longs is linear-time).
											
										 
											2003-02-02 02:57:53 +00:00
										 |  |  |             return | 
					
						
							| 
									
										
										
										
											2009-01-20 20:43:58 +00:00
										 |  |  |         self.write(LONG + repr(obj).encode("ascii") + b'L\n') | 
					
						
							| 
									
										
										
										
											2007-06-07 23:15:56 +00:00
										 |  |  |     dispatch[int] = save_long | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |     def save_float(self, obj): | 
					
						
							| 
									
										
										
										
											1998-10-22 20:15:36 +00:00
										 |  |  |         if self.bin: | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |             self.write(BINFLOAT + pack('>d', obj)) | 
					
						
							| 
									
										
										
										
											1998-10-22 20:15:36 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2007-08-27 17:23:59 +00:00
										 |  |  |             self.write(FLOAT + repr(obj).encode("ascii") + b'\n') | 
					
						
							| 
									
										
										
										
											2007-06-07 23:15:56 +00:00
										 |  |  |     dispatch[float] = save_float | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |     def save_bytes(self, obj): | 
					
						
							| 
									
										
										
										
											2008-03-17 22:56:06 +00:00
										 |  |  |         if self.proto < 3: | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |             if not obj: # bytes object is empty | 
					
						
							| 
									
										
										
										
											2011-12-13 13:08:09 -05:00
										 |  |  |                 self.save_reduce(bytes, (), obj=obj) | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 self.save_reduce(codecs.encode, | 
					
						
							|  |  |  |                                  (str(obj, 'latin1'), 'latin1'), obj=obj) | 
					
						
							| 
									
										
										
										
											2008-03-17 22:56:06 +00:00
										 |  |  |             return | 
					
						
							|  |  |  |         n = len(obj) | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |         if n <= 0xff: | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |             self.write(SHORT_BINBYTES + pack("<B", n) + obj) | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |         elif n > 0xffffffff and self.proto >= 4: | 
					
						
							|  |  |  |             self.write(BINBYTES8 + pack("<Q", n) + obj) | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |             self.write(BINBYTES + pack("<I", n) + obj) | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |         self.memoize(obj) | 
					
						
							| 
									
										
										
										
											2008-03-17 22:56:06 +00:00
										 |  |  |     dispatch[bytes] = save_bytes | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |     def save_str(self, obj): | 
					
						
							| 
									
										
										
										
											2001-04-10 02:48:53 +00:00
										 |  |  |         if self.bin: | 
					
						
							| 
									
										
										
										
											2010-04-13 11:07:24 +00:00
										 |  |  |             encoded = obj.encode('utf-8', 'surrogatepass') | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |             n = len(encoded) | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |             if n <= 0xff and self.proto >= 4: | 
					
						
							|  |  |  |                 self.write(SHORT_BINUNICODE + pack("<B", n) + encoded) | 
					
						
							|  |  |  |             elif n > 0xffffffff and self.proto >= 4: | 
					
						
							|  |  |  |                 self.write(BINUNICODE8 + pack("<Q", n) + encoded) | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 self.write(BINUNICODE + pack("<I", n) + encoded) | 
					
						
							| 
									
										
										
										
											2000-03-10 23:20:09 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |             obj = obj.replace("\\", "\\u005c") | 
					
						
							|  |  |  |             obj = obj.replace("\n", "\\u000a") | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |             self.write(UNICODE + obj.encode('raw-unicode-escape') + | 
					
						
							|  |  |  |                        b'\n') | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |         self.memoize(obj) | 
					
						
							| 
									
										
										
										
											2008-03-17 22:56:06 +00:00
										 |  |  |     dispatch[str] = save_str | 
					
						
							| 
									
										
										
										
											2001-02-09 20:06:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |     def save_tuple(self, obj): | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         if not obj: # tuple is empty | 
					
						
							|  |  |  |             if self.bin: | 
					
						
							|  |  |  |                 self.write(EMPTY_TUPLE) | 
					
						
							| 
									
										
										
										
											2003-02-02 20:29:39 +00:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |                 self.write(MARK + TUPLE) | 
					
						
							| 
									
										
										
										
											2003-01-28 05:48:29 +00:00
										 |  |  |             return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         n = len(obj) | 
					
						
							| 
									
										
										
										
											2003-01-28 05:48:29 +00:00
										 |  |  |         save = self.save | 
					
						
							|  |  |  |         memo = self.memo | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         if n <= 3 and self.proto >= 2: | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |             for element in obj: | 
					
						
							| 
									
										
										
										
											2003-01-28 05:48:29 +00:00
										 |  |  |                 save(element) | 
					
						
							|  |  |  |             # Subtle.  Same as in the big comment below. | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |             if id(obj) in memo: | 
					
						
							|  |  |  |                 get = self.get(memo[id(obj)][0]) | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |                 self.write(POP * n + get) | 
					
						
							| 
									
										
										
										
											2003-01-28 05:48:29 +00:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |                 self.write(_tuplesize2code[n]) | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |                 self.memoize(obj) | 
					
						
							| 
									
										
										
										
											2003-01-28 05:48:29 +00:00
										 |  |  |             return | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-02 20:29:39 +00:00
										 |  |  |         # proto 0 or proto 1 and tuple isn't empty, or proto > 1 and tuple | 
					
						
							| 
									
										
										
										
											2003-01-28 05:34:53 +00:00
										 |  |  |         # has more than 3 elements. | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         write = self.write | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |         write(MARK) | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |         for element in obj: | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |             save(element) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-02 20:29:39 +00:00
										 |  |  |         if id(obj) in memo: | 
					
						
							| 
									
										
										
										
											2003-01-28 02:09:55 +00:00
										 |  |  |             # Subtle.  d was not in memo when we entered save_tuple(), so | 
					
						
							|  |  |  |             # the process of saving the tuple's elements must have saved | 
					
						
							|  |  |  |             # the tuple itself:  the tuple is recursive.  The proper action | 
					
						
							|  |  |  |             # now is to throw away everything we put on the stack, and | 
					
						
							|  |  |  |             # simply GET the tuple (it's already constructed).  This check | 
					
						
							|  |  |  |             # could have been done in the "for element" loop instead, but | 
					
						
							|  |  |  |             # recursive tuples are a rare thing. | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |             get = self.get(memo[id(obj)][0]) | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |             if self.bin: | 
					
						
							| 
									
										
										
										
											2003-01-28 02:09:55 +00:00
										 |  |  |                 write(POP_MARK + get) | 
					
						
							|  |  |  |             else:   # proto 0 -- POP_MARK not available | 
					
						
							| 
									
										
										
										
											2003-01-28 05:48:29 +00:00
										 |  |  |                 write(POP * (n+1) + get) | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |             return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-02 20:29:39 +00:00
										 |  |  |         # No recursion. | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         write(TUPLE) | 
					
						
							| 
									
										
										
										
											2003-02-02 20:29:39 +00:00
										 |  |  |         self.memoize(obj) | 
					
						
							| 
									
										
										
										
											2003-01-24 19:29:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-07 23:15:56 +00:00
										 |  |  |     dispatch[tuple] = save_tuple | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |     def save_list(self, obj): | 
					
						
							| 
									
										
										
										
											2001-04-10 02:48:53 +00:00
										 |  |  |         if self.bin: | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |             self.write(EMPTY_LIST) | 
					
						
							| 
									
										
										
										
											2003-01-31 18:53:21 +00:00
										 |  |  |         else:   # proto 0 -- can't use EMPTY_LIST | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |             self.write(MARK + LIST) | 
					
						
							| 
									
										
										
										
											2003-01-31 18:53:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         self.memoize(obj) | 
					
						
							| 
									
										
										
										
											2008-05-14 21:57:18 +00:00
										 |  |  |         self._batch_appends(obj) | 
					
						
							| 
									
										
										
										
											2003-01-31 18:53:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-07 23:15:56 +00:00
										 |  |  |     dispatch[list] = save_list | 
					
						
							| 
									
										
										
										
											2003-01-31 18:53:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     _BATCHSIZE = 1000 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _batch_appends(self, items): | 
					
						
							|  |  |  |         # Helper to batch up APPENDS sequences | 
					
						
							|  |  |  |         save = self.save | 
					
						
							|  |  |  |         write = self.write | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if not self.bin: | 
					
						
							|  |  |  |             for x in items: | 
					
						
							|  |  |  |                 save(x) | 
					
						
							|  |  |  |                 write(APPEND) | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         it = iter(items) | 
					
						
							|  |  |  |         while True: | 
					
						
							|  |  |  |             tmp = list(islice(it, self._BATCHSIZE)) | 
					
						
							| 
									
										
										
										
											2003-01-31 18:53:21 +00:00
										 |  |  |             n = len(tmp) | 
					
						
							| 
									
										
										
										
											2003-01-28 01:15:46 +00:00
										 |  |  |             if n > 1: | 
					
						
							|  |  |  |                 write(MARK) | 
					
						
							| 
									
										
										
										
											2003-01-31 18:53:21 +00:00
										 |  |  |                 for x in tmp: | 
					
						
							|  |  |  |                     save(x) | 
					
						
							| 
									
										
										
										
											2003-01-28 01:15:46 +00:00
										 |  |  |                 write(APPENDS) | 
					
						
							|  |  |  |             elif n: | 
					
						
							| 
									
										
										
										
											2003-01-31 18:53:21 +00:00
										 |  |  |                 save(tmp[0]) | 
					
						
							| 
									
										
										
										
											2003-01-28 01:15:46 +00:00
										 |  |  |                 write(APPEND) | 
					
						
							| 
									
										
										
										
											2003-01-31 18:53:21 +00:00
										 |  |  |             # else tmp is empty, and we're done | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |             if n < self._BATCHSIZE: | 
					
						
							|  |  |  |                 return | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |     def save_dict(self, obj): | 
					
						
							| 
									
										
										
										
											2001-04-10 02:48:53 +00:00
										 |  |  |         if self.bin: | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |             self.write(EMPTY_DICT) | 
					
						
							| 
									
										
										
										
											2003-01-31 18:53:21 +00:00
										 |  |  |         else:   # proto 0 -- can't use EMPTY_DICT | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |             self.write(MARK + DICT) | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-31 18:53:21 +00:00
										 |  |  |         self.memoize(obj) | 
					
						
							| 
									
										
										
										
											2008-05-14 21:57:18 +00:00
										 |  |  |         self._batch_setitems(obj.items()) | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-06-07 23:15:56 +00:00
										 |  |  |     dispatch[dict] = save_dict | 
					
						
							|  |  |  |     if PyStringMap is not None: | 
					
						
							| 
									
										
										
										
											1998-05-27 22:38:22 +00:00
										 |  |  |         dispatch[PyStringMap] = save_dict | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-31 18:53:21 +00:00
										 |  |  |     def _batch_setitems(self, items): | 
					
						
							|  |  |  |         # Helper to batch up SETITEMS sequences; proto >= 1 only | 
					
						
							|  |  |  |         save = self.save | 
					
						
							|  |  |  |         write = self.write | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if not self.bin: | 
					
						
							|  |  |  |             for k, v in items: | 
					
						
							|  |  |  |                 save(k) | 
					
						
							|  |  |  |                 save(v) | 
					
						
							|  |  |  |                 write(SETITEM) | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         it = iter(items) | 
					
						
							|  |  |  |         while True: | 
					
						
							|  |  |  |             tmp = list(islice(it, self._BATCHSIZE)) | 
					
						
							| 
									
										
										
										
											2003-01-31 18:53:21 +00:00
										 |  |  |             n = len(tmp) | 
					
						
							|  |  |  |             if n > 1: | 
					
						
							|  |  |  |                 write(MARK) | 
					
						
							|  |  |  |                 for k, v in tmp: | 
					
						
							|  |  |  |                     save(k) | 
					
						
							|  |  |  |                     save(v) | 
					
						
							|  |  |  |                 write(SETITEMS) | 
					
						
							|  |  |  |             elif n: | 
					
						
							|  |  |  |                 k, v = tmp[0] | 
					
						
							|  |  |  |                 save(k) | 
					
						
							|  |  |  |                 save(v) | 
					
						
							|  |  |  |                 write(SETITEM) | 
					
						
							|  |  |  |             # else tmp is empty, and we're done | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |             if n < self._BATCHSIZE: | 
					
						
							|  |  |  |                 return | 
					
						
							| 
									
										
										
										
											2003-01-31 18:53:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |     def save_set(self, obj): | 
					
						
							|  |  |  |         save = self.save | 
					
						
							|  |  |  |         write = self.write | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if self.proto < 4: | 
					
						
							|  |  |  |             self.save_reduce(set, (list(obj),), obj=obj) | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         write(EMPTY_SET) | 
					
						
							|  |  |  |         self.memoize(obj) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         it = iter(obj) | 
					
						
							|  |  |  |         while True: | 
					
						
							|  |  |  |             batch = list(islice(it, self._BATCHSIZE)) | 
					
						
							|  |  |  |             n = len(batch) | 
					
						
							|  |  |  |             if n > 0: | 
					
						
							|  |  |  |                 write(MARK) | 
					
						
							|  |  |  |                 for item in batch: | 
					
						
							|  |  |  |                     save(item) | 
					
						
							|  |  |  |                 write(ADDITEMS) | 
					
						
							|  |  |  |             if n < self._BATCHSIZE: | 
					
						
							|  |  |  |                 return | 
					
						
							|  |  |  |     dispatch[set] = save_set | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def save_frozenset(self, obj): | 
					
						
							|  |  |  |         save = self.save | 
					
						
							|  |  |  |         write = self.write | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if self.proto < 4: | 
					
						
							|  |  |  |             self.save_reduce(frozenset, (list(obj),), obj=obj) | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         write(MARK) | 
					
						
							|  |  |  |         for item in obj: | 
					
						
							|  |  |  |             save(item) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if id(obj) in self.memo: | 
					
						
							|  |  |  |             # If the object is already in the memo, this means it is | 
					
						
							|  |  |  |             # recursive. In this case, throw away everything we put on the | 
					
						
							|  |  |  |             # stack, and fetch the object back from the memo. | 
					
						
							|  |  |  |             write(POP_MARK + self.get(self.memo[id(obj)][0])) | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         write(FROZENSET) | 
					
						
							|  |  |  |         self.memoize(obj) | 
					
						
							|  |  |  |     dispatch[frozenset] = save_frozenset | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |     def save_global(self, obj, name=None): | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |         write = self.write | 
					
						
							|  |  |  |         memo = self.memo | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-31 14:07:24 +03:00
										 |  |  |         if name is None: | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |             name = getattr(obj, '__qualname__', None) | 
					
						
							| 
									
										
										
										
											2001-04-10 02:48:53 +00:00
										 |  |  |         if name is None: | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |             name = obj.__name__ | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-31 14:07:24 +03:00
										 |  |  |         module_name = whichmodule(obj, name) | 
					
						
							| 
									
										
										
										
											2001-08-17 18:49:52 +00:00
										 |  |  |         try: | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |             __import__(module_name, level=0) | 
					
						
							|  |  |  |             module = sys.modules[module_name] | 
					
						
							| 
									
										
										
										
											2015-03-31 14:07:24 +03:00
										 |  |  |             obj2, parent = _getattribute(module, name) | 
					
						
							| 
									
										
										
										
											2001-08-17 18:49:52 +00:00
										 |  |  |         except (ImportError, KeyError, AttributeError): | 
					
						
							|  |  |  |             raise PicklingError( | 
					
						
							|  |  |  |                 "Can't pickle %r: it's not found as %s.%s" % | 
					
						
							| 
									
										
										
										
											2017-04-05 09:37:24 +03:00
										 |  |  |                 (obj, module_name, name)) from None | 
					
						
							| 
									
										
										
										
											2001-08-17 18:49:52 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |             if obj2 is not obj: | 
					
						
							| 
									
										
										
										
											2001-08-17 18:49:52 +00:00
										 |  |  |                 raise PicklingError( | 
					
						
							|  |  |  |                     "Can't pickle %r: it's not the same object as %s.%s" % | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |                     (obj, module_name, name)) | 
					
						
							| 
									
										
										
										
											2001-08-17 18:49:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-29 06:14:11 +00:00
										 |  |  |         if self.proto >= 2: | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |             code = _extension_registry.get((module_name, name)) | 
					
						
							| 
									
										
										
										
											2003-01-29 06:14:11 +00:00
										 |  |  |             if code: | 
					
						
							|  |  |  |                 assert code > 0 | 
					
						
							|  |  |  |                 if code <= 0xff: | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |                     write(EXT1 + pack("<B", code)) | 
					
						
							| 
									
										
										
										
											2003-01-29 06:14:11 +00:00
										 |  |  |                 elif code <= 0xffff: | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |                     write(EXT2 + pack("<H", code)) | 
					
						
							| 
									
										
										
										
											2003-01-29 06:14:11 +00:00
										 |  |  |                 else: | 
					
						
							|  |  |  |                     write(EXT4 + pack("<i", code)) | 
					
						
							|  |  |  |                 return | 
					
						
							| 
									
										
										
										
											2015-03-31 14:07:24 +03:00
										 |  |  |         lastname = name.rpartition('.')[2] | 
					
						
							|  |  |  |         if parent is module: | 
					
						
							|  |  |  |             name = lastname | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |         # Non-ASCII identifiers are supported only with protocols >= 3. | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |         if self.proto >= 4: | 
					
						
							|  |  |  |             self.save(module_name) | 
					
						
							|  |  |  |             self.save(name) | 
					
						
							|  |  |  |             write(STACK_GLOBAL) | 
					
						
							| 
									
										
										
										
											2015-03-31 14:07:24 +03:00
										 |  |  |         elif parent is not module: | 
					
						
							|  |  |  |             self.save_reduce(getattr, (parent, lastname)) | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |         elif self.proto >= 3: | 
					
						
							|  |  |  |             write(GLOBAL + bytes(module_name, "utf-8") + b'\n' + | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |                   bytes(name, "utf-8") + b'\n') | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2009-06-04 20:32:06 +00:00
										 |  |  |             if self.fix_imports: | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |                 r_name_mapping = _compat_pickle.REVERSE_NAME_MAPPING | 
					
						
							|  |  |  |                 r_import_mapping = _compat_pickle.REVERSE_IMPORT_MAPPING | 
					
						
							|  |  |  |                 if (module_name, name) in r_name_mapping: | 
					
						
							|  |  |  |                     module_name, name = r_name_mapping[(module_name, name)] | 
					
						
							| 
									
										
										
										
											2015-03-31 13:12:37 +03:00
										 |  |  |                 elif module_name in r_import_mapping: | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |                     module_name = r_import_mapping[module_name] | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |             try: | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |                 write(GLOBAL + bytes(module_name, "ascii") + b'\n' + | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |                       bytes(name, "ascii") + b'\n') | 
					
						
							|  |  |  |             except UnicodeEncodeError: | 
					
						
							|  |  |  |                 raise PicklingError( | 
					
						
							|  |  |  |                     "can't pickle global identifier '%s.%s' using " | 
					
						
							| 
									
										
										
										
											2017-04-05 09:37:24 +03:00
										 |  |  |                     "pickle protocol %i" % (module, name, self.proto)) from None | 
					
						
							| 
									
										
										
										
											2003-01-29 06:14:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |         self.memoize(obj) | 
					
						
							| 
									
										
										
										
											2003-01-28 03:51:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-30 16:06:39 -08:00
										 |  |  |     def save_type(self, obj): | 
					
						
							|  |  |  |         if obj is type(None): | 
					
						
							|  |  |  |             return self.save_reduce(type, (None,), obj=obj) | 
					
						
							|  |  |  |         elif obj is type(NotImplemented): | 
					
						
							|  |  |  |             return self.save_reduce(type, (NotImplemented,), obj=obj) | 
					
						
							|  |  |  |         elif obj is type(...): | 
					
						
							|  |  |  |             return self.save_reduce(type, (...,), obj=obj) | 
					
						
							|  |  |  |         return self.save_global(obj) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |     dispatch[FunctionType] = save_global | 
					
						
							| 
									
										
										
										
											2013-11-30 16:06:39 -08:00
										 |  |  |     dispatch[type] = save_type | 
					
						
							| 
									
										
										
										
											1995-03-14 15:09:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-01-10 00:31:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 15:19:53 +00:00
										 |  |  | # Unpickling machinery | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  | class _Unpickler: | 
					
						
							| 
									
										
										
										
											1995-01-10 00:31:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-04 20:32:06 +00:00
										 |  |  |     def __init__(self, file, *, fix_imports=True, | 
					
						
							|  |  |  |                  encoding="ASCII", errors="strict"): | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |         """This takes a binary file for reading a pickle data stream.
 | 
					
						
							| 
									
										
										
										
											2002-05-29 16:18:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-07 01:09:27 -08:00
										 |  |  |         The protocol version of the pickle is detected automatically, so | 
					
						
							|  |  |  |         no proto argument is needed. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         The argument *file* must have two methods, a read() method that | 
					
						
							|  |  |  |         takes an integer argument, and a readline() method that requires | 
					
						
							|  |  |  |         no arguments.  Both methods should return bytes.  Thus *file* | 
					
						
							| 
									
										
										
										
											2015-11-02 03:37:02 +00:00
										 |  |  |         can be a binary file object opened for reading, an io.BytesIO | 
					
						
							| 
									
										
										
										
											2013-12-07 01:09:27 -08:00
										 |  |  |         object, or any other custom object that meets this interface. | 
					
						
							| 
									
										
										
										
											2002-05-29 16:18:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-10-10 18:00:50 +00:00
										 |  |  |         The file-like object must have two methods, a read() method | 
					
						
							|  |  |  |         that takes an integer argument, and a readline() method that | 
					
						
							|  |  |  |         requires no arguments.  Both methods should return bytes. | 
					
						
							|  |  |  |         Thus file-like object can be a binary file object opened for | 
					
						
							|  |  |  |         reading, a BytesIO object, or any other custom object that | 
					
						
							|  |  |  |         meets this interface. | 
					
						
							| 
									
										
										
										
											2008-03-17 22:56:06 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-07 01:09:27 -08:00
										 |  |  |         Optional keyword arguments are *fix_imports*, *encoding* and | 
					
						
							| 
									
										
										
										
											2016-05-26 05:35:26 +00:00
										 |  |  |         *errors*, which are used to control compatibility support for | 
					
						
							| 
									
										
										
										
											2013-12-07 01:09:27 -08:00
										 |  |  |         pickle stream generated by Python 2.  If *fix_imports* is True, | 
					
						
							|  |  |  |         pickle will try to map the old Python 2 names to the new names | 
					
						
							|  |  |  |         used in Python 3.  The *encoding* and *errors* tell pickle how | 
					
						
							|  |  |  |         to decode 8-bit string instances pickled by Python 2; these | 
					
						
							|  |  |  |         default to 'ASCII' and 'strict', respectively. *encoding* can be | 
					
						
							|  |  |  |         'bytes' to read theses 8-bit string instances as bytes objects. | 
					
						
							| 
									
										
										
										
											2002-05-29 16:18:42 +00:00
										 |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |         self._file_readline = file.readline | 
					
						
							|  |  |  |         self._file_read = file.read | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |         self.memo = {} | 
					
						
							| 
									
										
										
										
											2008-03-17 22:56:06 +00:00
										 |  |  |         self.encoding = encoding | 
					
						
							|  |  |  |         self.errors = errors | 
					
						
							| 
									
										
										
										
											2009-06-04 20:32:06 +00:00
										 |  |  |         self.proto = 0 | 
					
						
							|  |  |  |         self.fix_imports = fix_imports | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load(self): | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |         """Read a pickled object representation from the open file.
 | 
					
						
							| 
									
										
										
										
											2002-05-29 16:18:42 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |         Return the reconstituted object hierarchy specified in the file. | 
					
						
							| 
									
										
										
										
											2002-05-29 16:18:42 +00:00
										 |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2008-12-27 09:30:39 +00:00
										 |  |  |         # Check whether Unpickler was initialized correctly. This is | 
					
						
							|  |  |  |         # only needed to mimic the behavior of _pickle.Unpickler.dump(). | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |         if not hasattr(self, "_file_read"): | 
					
						
							| 
									
										
										
										
											2008-12-27 09:30:39 +00:00
										 |  |  |             raise UnpicklingError("Unpickler.__init__() was not called by " | 
					
						
							|  |  |  |                                   "%s.__init__()" % (self.__class__.__name__,)) | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |         self._unframer = _Unframer(self._file_read, self._file_readline) | 
					
						
							|  |  |  |         self.read = self._unframer.read | 
					
						
							|  |  |  |         self.readline = self._unframer.readline | 
					
						
							| 
									
										
										
										
											2015-12-06 22:01:35 +02:00
										 |  |  |         self.metastack = [] | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |         self.stack = [] | 
					
						
							|  |  |  |         self.append = self.stack.append | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |         self.proto = 0 | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |         read = self.read | 
					
						
							|  |  |  |         dispatch = self.dispatch | 
					
						
							|  |  |  |         try: | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |             while True: | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |                 key = read(1) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |                 if not key: | 
					
						
							|  |  |  |                     raise EOFError | 
					
						
							| 
									
										
										
										
											2007-11-06 21:34:58 +00:00
										 |  |  |                 assert isinstance(key, bytes_types) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |                 dispatch[key[0]](self) | 
					
						
							| 
									
										
										
										
											2007-01-10 16:19:56 +00:00
										 |  |  |         except _Stop as stopinst: | 
					
						
							| 
									
										
										
										
											2000-12-13 18:11:56 +00:00
										 |  |  |             return stopinst.value | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-06 22:01:35 +02:00
										 |  |  |     # Return a list of items pushed in the stack after last MARK instruction. | 
					
						
							|  |  |  |     def pop_mark(self): | 
					
						
							|  |  |  |         items = self.stack | 
					
						
							|  |  |  |         self.stack = self.metastack.pop() | 
					
						
							|  |  |  |         self.append = self.stack.append | 
					
						
							|  |  |  |         return items | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |     def persistent_load(self, pid): | 
					
						
							| 
									
										
										
										
											2009-01-10 17:05:44 +00:00
										 |  |  |         raise UnpicklingError("unsupported persistent id encountered") | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |     dispatch = {} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 03:49:52 +00:00
										 |  |  |     def load_proto(self): | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         proto = self.read(1)[0] | 
					
						
							| 
									
										
										
										
											2008-03-17 22:56:06 +00:00
										 |  |  |         if not 0 <= proto <= HIGHEST_PROTOCOL: | 
					
						
							| 
									
										
										
										
											2007-08-27 23:18:54 +00:00
										 |  |  |             raise ValueError("unsupported pickle protocol: %d" % proto) | 
					
						
							| 
									
										
										
										
											2009-06-04 20:32:06 +00:00
										 |  |  |         self.proto = proto | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[PROTO[0]] = load_proto | 
					
						
							| 
									
										
										
										
											2003-01-28 03:49:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-23 20:30:03 -08:00
										 |  |  |     def load_frame(self): | 
					
						
							|  |  |  |         frame_size, = unpack('<Q', self.read(8)) | 
					
						
							|  |  |  |         if frame_size > sys.maxsize: | 
					
						
							|  |  |  |             raise ValueError("frame size > sys.maxsize: %d" % frame_size) | 
					
						
							|  |  |  |         self._unframer.load_frame(frame_size) | 
					
						
							|  |  |  |     dispatch[FRAME[0]] = load_frame | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |     def load_persid(self): | 
					
						
							| 
									
										
										
										
											2016-07-17 11:24:17 +03:00
										 |  |  |         try: | 
					
						
							|  |  |  |             pid = self.readline()[:-1].decode("ascii") | 
					
						
							|  |  |  |         except UnicodeDecodeError: | 
					
						
							|  |  |  |             raise UnpicklingError( | 
					
						
							|  |  |  |                 "persistent IDs in protocol 0 must be ASCII strings") | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |         self.append(self.persistent_load(pid)) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[PERSID[0]] = load_persid | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_binpersid(self): | 
					
						
							| 
									
										
										
										
											2002-06-30 03:39:14 +00:00
										 |  |  |         pid = self.stack.pop() | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |         self.append(self.persistent_load(pid)) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[BINPERSID[0]] = load_binpersid | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_none(self): | 
					
						
							|  |  |  |         self.append(None) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[NONE[0]] = load_none | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 04:25:27 +00:00
										 |  |  |     def load_false(self): | 
					
						
							|  |  |  |         self.append(False) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[NEWFALSE[0]] = load_false | 
					
						
							| 
									
										
										
										
											2003-01-28 04:25:27 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_true(self): | 
					
						
							|  |  |  |         self.append(True) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[NEWTRUE[0]] = load_true | 
					
						
							| 
									
										
										
										
											2003-01-28 04:25:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |     def load_int(self): | 
					
						
							| 
									
										
										
										
											2001-08-28 22:21:18 +00:00
										 |  |  |         data = self.readline() | 
					
						
							| 
									
										
										
										
											2002-04-05 19:30:08 +00:00
										 |  |  |         if data == FALSE[1:]: | 
					
						
							|  |  |  |             val = False | 
					
						
							|  |  |  |         elif data == TRUE[1:]: | 
					
						
							|  |  |  |             val = True | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |             val = int(data, 0) | 
					
						
							| 
									
										
										
										
											2002-04-05 19:30:08 +00:00
										 |  |  |         self.append(val) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[INT[0]] = load_int | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_binint(self): | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         self.append(unpack('<i', self.read(4))[0]) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[BININT[0]] = load_binint | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_binint1(self): | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         self.append(self.read(1)[0]) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[BININT1[0]] = load_binint1 | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_binint2(self): | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         self.append(unpack('<H', self.read(2))[0]) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[BININT2[0]] = load_binint2 | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |     def load_long(self): | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         val = self.readline()[:-1] | 
					
						
							|  |  |  |         if val and val[-1] == b'L'[0]: | 
					
						
							| 
									
										
										
										
											2009-01-20 20:43:58 +00:00
										 |  |  |             val = val[:-1] | 
					
						
							| 
									
										
										
										
											2007-10-10 18:00:50 +00:00
										 |  |  |         self.append(int(val, 0)) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[LONG[0]] = load_long | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 03:49:52 +00:00
										 |  |  |     def load_long1(self): | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         n = self.read(1)[0] | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |         data = self.read(n) | 
					
						
							|  |  |  |         self.append(decode_long(data)) | 
					
						
							|  |  |  |     dispatch[LONG1[0]] = load_long1 | 
					
						
							| 
									
										
										
										
											2003-01-28 03:49:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_long4(self): | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         n, = unpack('<i', self.read(4)) | 
					
						
							| 
									
										
										
										
											2012-11-24 20:40:21 +01:00
										 |  |  |         if n < 0: | 
					
						
							|  |  |  |             # Corrupt or hostile pickle -- we never write one like this | 
					
						
							| 
									
										
										
										
											2013-04-14 02:25:10 -07:00
										 |  |  |             raise UnpicklingError("LONG pickle has negative byte count") | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |         data = self.read(n) | 
					
						
							|  |  |  |         self.append(decode_long(data)) | 
					
						
							|  |  |  |     dispatch[LONG4[0]] = load_long4 | 
					
						
							| 
									
										
										
										
											2003-01-28 03:49:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |     def load_float(self): | 
					
						
							| 
									
										
										
										
											2000-12-13 18:11:56 +00:00
										 |  |  |         self.append(float(self.readline()[:-1])) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[FLOAT[0]] = load_float | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |     def load_binfloat(self): | 
					
						
							| 
									
										
										
										
											1998-10-22 20:15:36 +00:00
										 |  |  |         self.append(unpack('>d', self.read(8))[0]) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[BINFLOAT[0]] = load_binfloat | 
					
						
							| 
									
										
										
										
											1998-10-22 20:15:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-12-07 01:09:27 -08:00
										 |  |  |     def _decode_string(self, value): | 
					
						
							|  |  |  |         # Used to allow strings from Python 2 to be decoded either as | 
					
						
							|  |  |  |         # bytes or Unicode strings.  This should be used only with the | 
					
						
							|  |  |  |         # STRING, BINSTRING and SHORT_BINSTRING opcodes. | 
					
						
							|  |  |  |         if self.encoding == "bytes": | 
					
						
							|  |  |  |             return value | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             return value.decode(self.encoding, self.errors) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |     def load_string(self): | 
					
						
							| 
									
										
										
										
											2013-04-15 23:14:55 -07:00
										 |  |  |         data = self.readline()[:-1] | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         # Strip outermost quotes | 
					
						
							| 
									
										
										
										
											2013-04-15 23:14:55 -07:00
										 |  |  |         if len(data) >= 2 and data[0] == data[-1] and data[0] in b'"\'': | 
					
						
							|  |  |  |             data = data[1:-1] | 
					
						
							| 
									
										
										
										
											2002-08-14 07:46:28 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2013-04-15 23:14:55 -07:00
										 |  |  |             raise UnpicklingError("the STRING opcode argument must be quoted") | 
					
						
							| 
									
										
										
										
											2013-12-07 01:09:27 -08:00
										 |  |  |         self.append(self._decode_string(codecs.escape_decode(data)[0])) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[STRING[0]] = load_string | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_binstring(self): | 
					
						
							| 
									
										
										
										
											2012-11-24 20:40:21 +01:00
										 |  |  |         # Deprecated BINSTRING uses signed 32-bit length | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         len, = unpack('<i', self.read(4)) | 
					
						
							| 
									
										
										
										
											2012-11-24 20:40:21 +01:00
										 |  |  |         if len < 0: | 
					
						
							| 
									
										
										
										
											2013-04-14 02:25:10 -07:00
										 |  |  |             raise UnpicklingError("BINSTRING pickle has negative byte count") | 
					
						
							| 
									
										
										
										
											2008-03-17 22:56:06 +00:00
										 |  |  |         data = self.read(len) | 
					
						
							| 
									
										
										
										
											2013-12-07 01:09:27 -08:00
										 |  |  |         self.append(self._decode_string(data)) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[BINSTRING[0]] = load_binstring | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |     def load_binbytes(self): | 
					
						
							| 
									
										
										
										
											2012-11-24 20:40:21 +01:00
										 |  |  |         len, = unpack('<I', self.read(4)) | 
					
						
							|  |  |  |         if len > maxsize: | 
					
						
							| 
									
										
										
										
											2013-04-14 02:25:10 -07:00
										 |  |  |             raise UnpicklingError("BINBYTES exceeds system's maximum size " | 
					
						
							|  |  |  |                                   "of %d bytes" % maxsize) | 
					
						
							| 
									
										
										
										
											2008-03-17 22:56:06 +00:00
										 |  |  |         self.append(self.read(len)) | 
					
						
							|  |  |  |     dispatch[BINBYTES[0]] = load_binbytes | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-03-10 23:20:09 +00:00
										 |  |  |     def load_unicode(self): | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |         self.append(str(self.readline()[:-1], 'raw-unicode-escape')) | 
					
						
							|  |  |  |     dispatch[UNICODE[0]] = load_unicode | 
					
						
							| 
									
										
										
										
											2000-03-10 23:20:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |     def load_binunicode(self): | 
					
						
							| 
									
										
										
										
											2012-11-24 20:40:21 +01:00
										 |  |  |         len, = unpack('<I', self.read(4)) | 
					
						
							|  |  |  |         if len > maxsize: | 
					
						
							| 
									
										
										
										
											2013-04-14 02:25:10 -07:00
										 |  |  |             raise UnpicklingError("BINUNICODE exceeds system's maximum size " | 
					
						
							|  |  |  |                                   "of %d bytes" % maxsize) | 
					
						
							| 
									
										
										
										
											2010-04-13 11:07:24 +00:00
										 |  |  |         self.append(str(self.read(len), 'utf-8', 'surrogatepass')) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[BINUNICODE[0]] = load_binunicode | 
					
						
							| 
									
										
										
										
											2000-03-10 23:20:09 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |     def load_binunicode8(self): | 
					
						
							|  |  |  |         len, = unpack('<Q', self.read(8)) | 
					
						
							|  |  |  |         if len > maxsize: | 
					
						
							|  |  |  |             raise UnpicklingError("BINUNICODE8 exceeds system's maximum size " | 
					
						
							|  |  |  |                                   "of %d bytes" % maxsize) | 
					
						
							|  |  |  |         self.append(str(self.read(len), 'utf-8', 'surrogatepass')) | 
					
						
							|  |  |  |     dispatch[BINUNICODE8[0]] = load_binunicode8 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-29 22:10:07 +03:00
										 |  |  |     def load_binbytes8(self): | 
					
						
							|  |  |  |         len, = unpack('<Q', self.read(8)) | 
					
						
							|  |  |  |         if len > maxsize: | 
					
						
							|  |  |  |             raise UnpicklingError("BINBYTES8 exceeds system's maximum size " | 
					
						
							|  |  |  |                                   "of %d bytes" % maxsize) | 
					
						
							|  |  |  |         self.append(self.read(len)) | 
					
						
							|  |  |  |     dispatch[BINBYTES8[0]] = load_binbytes8 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |     def load_short_binstring(self): | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         len = self.read(1)[0] | 
					
						
							|  |  |  |         data = self.read(len) | 
					
						
							| 
									
										
										
										
											2013-12-07 01:09:27 -08:00
										 |  |  |         self.append(self._decode_string(data)) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[SHORT_BINSTRING[0]] = load_short_binstring | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-03-17 22:56:06 +00:00
										 |  |  |     def load_short_binbytes(self): | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         len = self.read(1)[0] | 
					
						
							|  |  |  |         self.append(self.read(len)) | 
					
						
							| 
									
										
										
										
											2008-03-17 22:56:06 +00:00
										 |  |  |     dispatch[SHORT_BINBYTES[0]] = load_short_binbytes | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |     def load_short_binunicode(self): | 
					
						
							|  |  |  |         len = self.read(1)[0] | 
					
						
							|  |  |  |         self.append(str(self.read(len), 'utf-8', 'surrogatepass')) | 
					
						
							|  |  |  |     dispatch[SHORT_BINUNICODE[0]] = load_short_binunicode | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |     def load_tuple(self): | 
					
						
							| 
									
										
										
										
											2015-12-06 22:01:35 +02:00
										 |  |  |         items = self.pop_mark() | 
					
						
							|  |  |  |         self.append(tuple(items)) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[TUPLE[0]] = load_tuple | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_empty_tuple(self): | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |         self.append(()) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[EMPTY_TUPLE[0]] = load_empty_tuple | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 04:14:51 +00:00
										 |  |  |     def load_tuple1(self): | 
					
						
							|  |  |  |         self.stack[-1] = (self.stack[-1],) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[TUPLE1[0]] = load_tuple1 | 
					
						
							| 
									
										
										
										
											2003-01-28 04:14:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_tuple2(self): | 
					
						
							|  |  |  |         self.stack[-2:] = [(self.stack[-2], self.stack[-1])] | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[TUPLE2[0]] = load_tuple2 | 
					
						
							| 
									
										
										
										
											2003-01-28 04:14:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_tuple3(self): | 
					
						
							|  |  |  |         self.stack[-3:] = [(self.stack[-3], self.stack[-2], self.stack[-1])] | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[TUPLE3[0]] = load_tuple3 | 
					
						
							| 
									
										
										
										
											2003-01-28 04:14:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |     def load_empty_list(self): | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |         self.append([]) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[EMPTY_LIST[0]] = load_empty_list | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_empty_dictionary(self): | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |         self.append({}) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[EMPTY_DICT[0]] = load_empty_dictionary | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |     def load_empty_set(self): | 
					
						
							|  |  |  |         self.append(set()) | 
					
						
							|  |  |  |     dispatch[EMPTY_SET[0]] = load_empty_set | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def load_frozenset(self): | 
					
						
							| 
									
										
										
										
											2015-12-06 22:01:35 +02:00
										 |  |  |         items = self.pop_mark() | 
					
						
							|  |  |  |         self.append(frozenset(items)) | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |     dispatch[FROZENSET[0]] = load_frozenset | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |     def load_list(self): | 
					
						
							| 
									
										
										
										
											2015-12-06 22:01:35 +02:00
										 |  |  |         items = self.pop_mark() | 
					
						
							|  |  |  |         self.append(items) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[LIST[0]] = load_list | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_dict(self): | 
					
						
							| 
									
										
										
										
											2015-12-06 22:01:35 +02:00
										 |  |  |         items = self.pop_mark() | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         d = {items[i]: items[i+1] | 
					
						
							|  |  |  |              for i in range(0, len(items), 2)} | 
					
						
							| 
									
										
										
										
											2015-12-06 22:01:35 +02:00
										 |  |  |         self.append(d) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[DICT[0]] = load_dict | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-30 15:41:46 +00:00
										 |  |  |     # INST and OBJ differ only in how they get a class object.  It's not | 
					
						
							|  |  |  |     # only sensible to do the rest in a common routine, the two routines | 
					
						
							|  |  |  |     # previously diverged and grew different bugs. | 
					
						
							|  |  |  |     # klass is the class to instantiate, and k points to the topmost mark | 
					
						
							|  |  |  |     # object, following which are the arguments for klass.__init__. | 
					
						
							| 
									
										
										
										
											2015-12-06 22:01:35 +02:00
										 |  |  |     def _instantiate(self, klass, args): | 
					
						
							| 
									
										
										
										
											2010-07-17 22:50:45 +00:00
										 |  |  |         if (args or not isinstance(klass, type) or | 
					
						
							|  |  |  |             hasattr(klass, "__getinitargs__")): | 
					
						
							| 
									
										
										
										
											1998-09-15 20:25:57 +00:00
										 |  |  |             try: | 
					
						
							| 
									
										
										
										
											2003-01-28 22:29:13 +00:00
										 |  |  |                 value = klass(*args) | 
					
						
							| 
									
										
										
										
											2007-01-10 16:19:56 +00:00
										 |  |  |             except TypeError as err: | 
					
						
							| 
									
										
										
										
											2007-08-27 23:18:54 +00:00
										 |  |  |                 raise TypeError("in constructor for %s: %s" % | 
					
						
							|  |  |  |                                 (klass.__name__, str(err)), sys.exc_info()[2]) | 
					
						
							| 
									
										
										
										
											2010-07-17 22:50:45 +00:00
										 |  |  |         else: | 
					
						
							|  |  |  |             value = klass.__new__(klass) | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |         self.append(value) | 
					
						
							| 
									
										
										
										
											2003-01-30 15:41:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_inst(self): | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |         module = self.readline()[:-1].decode("ascii") | 
					
						
							|  |  |  |         name = self.readline()[:-1].decode("ascii") | 
					
						
							| 
									
										
										
										
											2003-01-30 15:41:46 +00:00
										 |  |  |         klass = self.find_class(module, name) | 
					
						
							| 
									
										
										
										
											2015-12-06 22:01:35 +02:00
										 |  |  |         self._instantiate(klass, self.pop_mark()) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[INST[0]] = load_inst | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_obj(self): | 
					
						
							| 
									
										
										
										
											2003-01-30 15:41:46 +00:00
										 |  |  |         # Stack is ... markobject classobject arg1 arg2 ... | 
					
						
							| 
									
										
										
										
											2015-12-06 22:01:35 +02:00
										 |  |  |         args = self.pop_mark() | 
					
						
							|  |  |  |         cls = args.pop(0) | 
					
						
							|  |  |  |         self._instantiate(cls, args) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[OBJ[0]] = load_obj | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |     def load_newobj(self): | 
					
						
							|  |  |  |         args = self.stack.pop() | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |         cls = self.stack.pop() | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  |         obj = cls.__new__(cls, *args) | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |         self.append(obj) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[NEWOBJ[0]] = load_newobj | 
					
						
							| 
									
										
										
										
											2003-01-28 15:10:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |     def load_newobj_ex(self): | 
					
						
							|  |  |  |         kwargs = self.stack.pop() | 
					
						
							|  |  |  |         args = self.stack.pop() | 
					
						
							|  |  |  |         cls = self.stack.pop() | 
					
						
							|  |  |  |         obj = cls.__new__(cls, *args, **kwargs) | 
					
						
							|  |  |  |         self.append(obj) | 
					
						
							|  |  |  |     dispatch[NEWOBJ_EX[0]] = load_newobj_ex | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |     def load_global(self): | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |         module = self.readline()[:-1].decode("utf-8") | 
					
						
							|  |  |  |         name = self.readline()[:-1].decode("utf-8") | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |         klass = self.find_class(module, name) | 
					
						
							|  |  |  |         self.append(klass) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[GLOBAL[0]] = load_global | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |     def load_stack_global(self): | 
					
						
							|  |  |  |         name = self.stack.pop() | 
					
						
							|  |  |  |         module = self.stack.pop() | 
					
						
							|  |  |  |         if type(name) is not str or type(module) is not str: | 
					
						
							|  |  |  |             raise UnpicklingError("STACK_GLOBAL requires str") | 
					
						
							|  |  |  |         self.append(self.find_class(module, name)) | 
					
						
							|  |  |  |     dispatch[STACK_GLOBAL[0]] = load_stack_global | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-29 06:14:11 +00:00
										 |  |  |     def load_ext1(self): | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         code = self.read(1)[0] | 
					
						
							| 
									
										
										
										
											2003-01-29 06:14:11 +00:00
										 |  |  |         self.get_extension(code) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[EXT1[0]] = load_ext1 | 
					
						
							| 
									
										
										
										
											2003-01-29 06:14:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_ext2(self): | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         code, = unpack('<H', self.read(2)) | 
					
						
							| 
									
										
										
										
											2003-01-29 06:14:11 +00:00
										 |  |  |         self.get_extension(code) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[EXT2[0]] = load_ext2 | 
					
						
							| 
									
										
										
										
											2003-01-29 06:14:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_ext4(self): | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         code, = unpack('<i', self.read(4)) | 
					
						
							| 
									
										
										
										
											2003-01-29 06:14:11 +00:00
										 |  |  |         self.get_extension(code) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[EXT4[0]] = load_ext4 | 
					
						
							| 
									
										
										
										
											2003-01-29 06:14:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def get_extension(self, code): | 
					
						
							|  |  |  |         nil = [] | 
					
						
							| 
									
										
										
										
											2003-02-04 01:54:49 +00:00
										 |  |  |         obj = _extension_cache.get(code, nil) | 
					
						
							| 
									
										
										
										
											2003-01-29 06:14:11 +00:00
										 |  |  |         if obj is not nil: | 
					
						
							|  |  |  |             self.append(obj) | 
					
						
							|  |  |  |             return | 
					
						
							| 
									
										
										
										
											2003-02-04 01:54:49 +00:00
										 |  |  |         key = _inverted_registry.get(code) | 
					
						
							| 
									
										
										
										
											2003-01-29 06:14:11 +00:00
										 |  |  |         if not key: | 
					
						
							| 
									
										
										
										
											2012-11-24 20:40:21 +01:00
										 |  |  |             if code <= 0: # note that 0 is forbidden | 
					
						
							|  |  |  |                 # Corrupt or hostile pickle. | 
					
						
							| 
									
										
										
										
											2013-04-14 02:25:10 -07:00
										 |  |  |                 raise UnpicklingError("EXT specifies code <= 0") | 
					
						
							| 
									
										
										
										
											2003-01-29 06:14:11 +00:00
										 |  |  |             raise ValueError("unregistered extension code %d" % code) | 
					
						
							|  |  |  |         obj = self.find_class(*key) | 
					
						
							| 
									
										
										
										
											2003-02-04 01:54:49 +00:00
										 |  |  |         _extension_cache[code] = obj | 
					
						
							| 
									
										
										
										
											2003-01-29 06:14:11 +00:00
										 |  |  |         self.append(obj) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |     def find_class(self, module, name): | 
					
						
							| 
									
										
										
										
											2009-06-04 20:32:06 +00:00
										 |  |  |         # Subclasses may override this. | 
					
						
							|  |  |  |         if self.proto < 3 and self.fix_imports: | 
					
						
							|  |  |  |             if (module, name) in _compat_pickle.NAME_MAPPING: | 
					
						
							|  |  |  |                 module, name = _compat_pickle.NAME_MAPPING[(module, name)] | 
					
						
							| 
									
										
										
										
											2015-03-31 13:12:37 +03:00
										 |  |  |             elif module in _compat_pickle.IMPORT_MAPPING: | 
					
						
							| 
									
										
										
										
											2009-06-04 20:32:06 +00:00
										 |  |  |                 module = _compat_pickle.IMPORT_MAPPING[module] | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |         __import__(module, level=0) | 
					
						
							| 
									
										
										
										
											2015-03-31 14:07:24 +03:00
										 |  |  |         if self.proto >= 4: | 
					
						
							|  |  |  |             return _getattribute(sys.modules[module], name)[0] | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             return getattr(sys.modules[module], name) | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_reduce(self): | 
					
						
							|  |  |  |         stack = self.stack | 
					
						
							| 
									
										
										
										
											2003-01-28 22:29:13 +00:00
										 |  |  |         args = stack.pop() | 
					
						
							|  |  |  |         func = stack[-1] | 
					
						
							| 
									
										
										
										
											2015-12-01 00:39:25 +02:00
										 |  |  |         stack[-1] = func(*args) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[REDUCE[0]] = load_reduce | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_pop(self): | 
					
						
							| 
									
										
										
										
											2015-12-06 22:01:35 +02:00
										 |  |  |         if self.stack: | 
					
						
							|  |  |  |             del self.stack[-1] | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             self.pop_mark() | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[POP[0]] = load_pop | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_pop_mark(self): | 
					
						
							| 
									
										
										
										
											2015-12-06 22:01:35 +02:00
										 |  |  |         self.pop_mark() | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[POP_MARK[0]] = load_pop_mark | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_dup(self): | 
					
						
							| 
									
										
										
										
											1998-03-31 17:00:46 +00:00
										 |  |  |         self.append(self.stack[-1]) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[DUP[0]] = load_dup | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_get(self): | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |         i = int(self.readline()[:-1]) | 
					
						
							|  |  |  |         self.append(self.memo[i]) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[GET[0]] = load_get | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_binget(self): | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |         i = self.read(1)[0] | 
					
						
							|  |  |  |         self.append(self.memo[i]) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[BINGET[0]] = load_binget | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |     def load_long_binget(self): | 
					
						
							| 
									
										
										
										
											2012-11-24 20:40:21 +01:00
										 |  |  |         i, = unpack('<I', self.read(4)) | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |         self.append(self.memo[i]) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[LONG_BINGET[0]] = load_long_binget | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_put(self): | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |         i = int(self.readline()[:-1]) | 
					
						
							| 
									
										
										
										
											2011-08-30 00:27:10 +02:00
										 |  |  |         if i < 0: | 
					
						
							|  |  |  |             raise ValueError("negative PUT argument") | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |         self.memo[i] = self.stack[-1] | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[PUT[0]] = load_put | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_binput(self): | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |         i = self.read(1)[0] | 
					
						
							| 
									
										
										
										
											2011-08-30 00:27:10 +02:00
										 |  |  |         if i < 0: | 
					
						
							|  |  |  |             raise ValueError("negative BINPUT argument") | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |         self.memo[i] = self.stack[-1] | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[BINPUT[0]] = load_binput | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |     def load_long_binput(self): | 
					
						
							| 
									
										
										
										
											2012-11-24 20:40:21 +01:00
										 |  |  |         i, = unpack('<I', self.read(4)) | 
					
						
							|  |  |  |         if i > maxsize: | 
					
						
							| 
									
										
										
										
											2011-08-30 00:27:10 +02:00
										 |  |  |             raise ValueError("negative LONG_BINPUT argument") | 
					
						
							| 
									
										
										
										
											2008-06-12 18:26:05 +00:00
										 |  |  |         self.memo[i] = self.stack[-1] | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[LONG_BINPUT[0]] = load_long_binput | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |     def load_memoize(self): | 
					
						
							|  |  |  |         memo = self.memo | 
					
						
							|  |  |  |         memo[len(memo)] = self.stack[-1] | 
					
						
							|  |  |  |     dispatch[MEMOIZE[0]] = load_memoize | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |     def load_append(self): | 
					
						
							|  |  |  |         stack = self.stack | 
					
						
							| 
									
										
										
										
											2002-06-30 03:39:14 +00:00
										 |  |  |         value = stack.pop() | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |         list = stack[-1] | 
					
						
							|  |  |  |         list.append(value) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[APPEND[0]] = load_append | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_appends(self): | 
					
						
							| 
									
										
										
										
											2015-12-06 22:01:35 +02:00
										 |  |  |         items = self.pop_mark() | 
					
						
							|  |  |  |         list_obj = self.stack[-1] | 
					
						
							| 
									
										
										
										
											2017-02-02 11:12:47 +02:00
										 |  |  |         try: | 
					
						
							|  |  |  |             extend = list_obj.extend | 
					
						
							|  |  |  |         except AttributeError: | 
					
						
							|  |  |  |             pass | 
					
						
							| 
									
										
										
										
											2013-04-20 13:19:46 -07:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2017-02-02 11:12:47 +02:00
										 |  |  |             extend(items) | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  |         # Even if the PEP 307 requires extend() and append() methods, | 
					
						
							|  |  |  |         # fall back on append() if the object has no extend() method | 
					
						
							|  |  |  |         # for backward compatibility. | 
					
						
							|  |  |  |         append = list_obj.append | 
					
						
							|  |  |  |         for item in items: | 
					
						
							|  |  |  |             append(item) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[APPENDS[0]] = load_appends | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |     def load_setitem(self): | 
					
						
							|  |  |  |         stack = self.stack | 
					
						
							| 
									
										
										
										
											2002-06-30 03:39:14 +00:00
										 |  |  |         value = stack.pop() | 
					
						
							|  |  |  |         key = stack.pop() | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |         dict = stack[-1] | 
					
						
							|  |  |  |         dict[key] = value | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[SETITEM[0]] = load_setitem | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_setitems(self): | 
					
						
							| 
									
										
										
										
											2015-12-06 22:01:35 +02:00
										 |  |  |         items = self.pop_mark() | 
					
						
							|  |  |  |         dict = self.stack[-1] | 
					
						
							|  |  |  |         for i in range(0, len(items), 2): | 
					
						
							|  |  |  |             dict[items[i]] = items[i + 1] | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[SETITEMS[0]] = load_setitems | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |     def load_additems(self): | 
					
						
							| 
									
										
										
										
											2015-12-06 22:01:35 +02:00
										 |  |  |         items = self.pop_mark() | 
					
						
							|  |  |  |         set_obj = self.stack[-1] | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |         if isinstance(set_obj, set): | 
					
						
							|  |  |  |             set_obj.update(items) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             add = set_obj.add | 
					
						
							|  |  |  |             for item in items: | 
					
						
							|  |  |  |                 add(item) | 
					
						
							|  |  |  |     dispatch[ADDITEMS[0]] = load_additems | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |     def load_build(self): | 
					
						
							|  |  |  |         stack = self.stack | 
					
						
							| 
									
										
										
										
											2003-01-28 22:01:16 +00:00
										 |  |  |         state = stack.pop() | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  |         inst = stack[-1] | 
					
						
							| 
									
										
										
										
											2003-01-28 22:01:16 +00:00
										 |  |  |         setstate = getattr(inst, "__setstate__", None) | 
					
						
							| 
									
										
										
										
											2013-04-14 13:37:02 +03:00
										 |  |  |         if setstate is not None: | 
					
						
							| 
									
										
										
										
											2003-01-28 22:01:16 +00:00
										 |  |  |             setstate(state) | 
					
						
							|  |  |  |             return | 
					
						
							|  |  |  |         slotstate = None | 
					
						
							|  |  |  |         if isinstance(state, tuple) and len(state) == 2: | 
					
						
							|  |  |  |             state, slotstate = state | 
					
						
							|  |  |  |         if state: | 
					
						
							| 
									
										
										
										
											2009-05-25 18:50:33 +00:00
										 |  |  |             inst_dict = inst.__dict__ | 
					
						
							| 
									
										
										
										
											2009-05-02 21:41:14 +00:00
										 |  |  |             intern = sys.intern | 
					
						
							| 
									
										
										
										
											2009-05-25 18:50:33 +00:00
										 |  |  |             for k, v in state.items(): | 
					
						
							|  |  |  |                 if type(k) is str: | 
					
						
							|  |  |  |                     inst_dict[intern(k)] = v | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     inst_dict[k] = v | 
					
						
							| 
									
										
										
										
											2003-01-28 22:01:16 +00:00
										 |  |  |         if slotstate: | 
					
						
							|  |  |  |             for k, v in slotstate.items(): | 
					
						
							|  |  |  |                 setattr(inst, k, v) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[BUILD[0]] = load_build | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_mark(self): | 
					
						
							| 
									
										
										
										
											2015-12-06 22:01:35 +02:00
										 |  |  |         self.metastack.append(self.stack) | 
					
						
							|  |  |  |         self.stack = [] | 
					
						
							|  |  |  |         self.append = self.stack.append | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[MARK[0]] = load_mark | 
					
						
							| 
									
										
										
										
											1997-04-09 17:32:51 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_stop(self): | 
					
						
							| 
									
										
										
										
											2002-06-30 03:39:14 +00:00
										 |  |  |         value = self.stack.pop() | 
					
						
							| 
									
										
										
										
											2000-12-13 18:11:56 +00:00
										 |  |  |         raise _Stop(value) | 
					
						
							| 
									
										
										
										
											2007-05-04 19:56:22 +00:00
										 |  |  |     dispatch[STOP[0]] = load_stop | 
					
						
							| 
									
										
										
										
											1995-01-10 00:31:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 03:49:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-03-14 15:09:05 +00:00
										 |  |  | # Shorthands | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  | def _dump(obj, file, protocol=None, *, fix_imports=True): | 
					
						
							|  |  |  |     _Pickler(file, protocol, fix_imports=fix_imports).dump(obj) | 
					
						
							| 
									
										
										
										
											1995-03-14 15:09:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  | def _dumps(obj, protocol=None, *, fix_imports=True): | 
					
						
							| 
									
										
										
										
											2007-05-08 21:26:54 +00:00
										 |  |  |     f = io.BytesIO() | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |     _Pickler(f, protocol, fix_imports=fix_imports).dump(obj) | 
					
						
							| 
									
										
										
										
											2007-05-08 21:26:54 +00:00
										 |  |  |     res = f.getvalue() | 
					
						
							| 
									
										
										
										
											2007-11-06 21:34:58 +00:00
										 |  |  |     assert isinstance(res, bytes_types) | 
					
						
							| 
									
										
										
										
											2007-05-08 21:26:54 +00:00
										 |  |  |     return res | 
					
						
							| 
									
										
										
										
											1995-03-14 15:09:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  | def _load(file, *, fix_imports=True, encoding="ASCII", errors="strict"): | 
					
						
							|  |  |  |     return _Unpickler(file, fix_imports=fix_imports, | 
					
						
							| 
									
										
										
										
											2009-06-04 20:32:06 +00:00
										 |  |  |                      encoding=encoding, errors=errors).load() | 
					
						
							| 
									
										
										
										
											1995-03-14 15:09:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  | def _loads(s, *, fix_imports=True, encoding="ASCII", errors="strict"): | 
					
						
							| 
									
										
										
										
											2007-05-08 21:26:54 +00:00
										 |  |  |     if isinstance(s, str): | 
					
						
							|  |  |  |         raise TypeError("Can't load pickle from unicode string") | 
					
						
							|  |  |  |     file = io.BytesIO(s) | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |     return _Unpickler(file, fix_imports=fix_imports, | 
					
						
							|  |  |  |                       encoding=encoding, errors=errors).load() | 
					
						
							| 
									
										
										
										
											2003-01-28 03:49:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-09-09 18:33:21 +00:00
										 |  |  | # Use the faster _pickle if possible | 
					
						
							|  |  |  | try: | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |     from _pickle import ( | 
					
						
							|  |  |  |         PickleError, | 
					
						
							|  |  |  |         PicklingError, | 
					
						
							|  |  |  |         UnpicklingError, | 
					
						
							|  |  |  |         Pickler, | 
					
						
							|  |  |  |         Unpickler, | 
					
						
							|  |  |  |         dump, | 
					
						
							|  |  |  |         dumps, | 
					
						
							|  |  |  |         load, | 
					
						
							|  |  |  |         loads | 
					
						
							|  |  |  |     ) | 
					
						
							| 
									
										
										
										
											2013-07-04 17:43:24 -04:00
										 |  |  | except ImportError: | 
					
						
							| 
									
										
										
										
											2010-09-09 18:33:21 +00:00
										 |  |  |     Pickler, Unpickler = _Pickler, _Unpickler | 
					
						
							| 
									
										
										
										
											2013-11-23 18:59:12 +01:00
										 |  |  |     dump, dumps, load, loads = _dump, _dumps, _load, _loads | 
					
						
							| 
									
										
										
										
											2010-09-09 18:33:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-01-28 03:49:52 +00:00
										 |  |  | # Doctest | 
					
						
							|  |  |  | def _test(): | 
					
						
							|  |  |  |     import doctest | 
					
						
							|  |  |  |     return doctest.testmod() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if __name__ == "__main__": | 
					
						
							| 
									
										
										
										
											2011-11-04 08:29:17 +01:00
										 |  |  |     import argparse | 
					
						
							| 
									
										
										
										
											2010-07-27 23:02:38 +00:00
										 |  |  |     parser = argparse.ArgumentParser( | 
					
						
							|  |  |  |         description='display contents of the pickle files') | 
					
						
							|  |  |  |     parser.add_argument( | 
					
						
							|  |  |  |         'pickle_file', type=argparse.FileType('br'), | 
					
						
							|  |  |  |         nargs='*', help='the pickle file') | 
					
						
							|  |  |  |     parser.add_argument( | 
					
						
							|  |  |  |         '-t', '--test', action='store_true', | 
					
						
							|  |  |  |         help='run self-test suite') | 
					
						
							|  |  |  |     parser.add_argument( | 
					
						
							|  |  |  |         '-v', action='store_true', | 
					
						
							|  |  |  |         help='run verbosely; only affects self-test run') | 
					
						
							|  |  |  |     args = parser.parse_args() | 
					
						
							|  |  |  |     if args.test: | 
					
						
							|  |  |  |         _test() | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         if not args.pickle_file: | 
					
						
							|  |  |  |             parser.print_help() | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             import pprint | 
					
						
							|  |  |  |             for f in args.pickle_file: | 
					
						
							|  |  |  |                 obj = load(f) | 
					
						
							|  |  |  |                 pprint.pprint(obj) |