Searched refs:_reconstruct (Results 1 – 5 of 5) sorted by relevance
/external/python/cpython3/Lib/ |
D | copy.py | 102 return _reconstruct(x, None, *rv) 172 y = _reconstruct(x, memo, *rv) 258 def _reconstruct(x, memo, func, args, function
|
/external/python/cpython2/Lib/ |
D | copy.py | 96 return _reconstruct(x, rv, 0) 190 y = _reconstruct(x, rv, 1, memo) 306 def _reconstruct(x, info, deep, memo=None): function
|
/external/python/cpython3/Lib/email/ |
D | headerregistry.py | 228 def _reconstruct(cls, value): member in BaseHeader 261 return type(cls_name, bases, {})._reconstruct(value)
|
/external/python/cpython3/Lib/test/ |
D | pickletester.py | 202 return type(self)._reconstruct, (pickle.PickleBuffer(self),), None 204 return type(self)._reconstruct, (bytes(self),) 212 def _reconstruct(cls, obj): member in ZeroCopyBytes 230 return type(self)._reconstruct, (pickle.PickleBuffer(self),), None 232 return type(self)._reconstruct, (bytes(self),) 240 def _reconstruct(cls, obj): member in ZeroCopyBytearray 309 return (type(self)._reconstruct, 314 return (type(self)._reconstruct, 318 def _reconstruct(cls, obj, kwargs): member in PicklableNDArray
|
/external/python/cpython3/Doc/library/ |
D | pickle.rst | 994 return type(self)._reconstruct, (PickleBuffer(self),), None 997 return type(self)._reconstruct, (bytearray(self),) 1000 def _reconstruct(cls, obj): 1011 The reconstructor (the ``_reconstruct`` class method) returns the buffer's
|