Searched refs:_reconstruct (Results 1 – 4 of 4) sorted by relevance
/third_party/python/Lib/ |
D | copy.py | 102 return _reconstruct(x, None, *rv) 172 y = _reconstruct(x, memo, *rv) 259 def _reconstruct(x, memo, func, args, function
|
/third_party/python/Lib/email/ |
D | headerregistry.py | 224 def _reconstruct(cls, value): member in BaseHeader 257 return type(cls_name, bases, {})._reconstruct(value)
|
/third_party/python/Lib/test/ |
D | pickletester.py | 207 return type(self)._reconstruct, (pickle.PickleBuffer(self),), None 209 return type(self)._reconstruct, (bytes(self),) 217 def _reconstruct(cls, obj): member in ZeroCopyBytes 235 return type(self)._reconstruct, (pickle.PickleBuffer(self),), None 237 return type(self)._reconstruct, (bytes(self),) 245 def _reconstruct(cls, obj): member in ZeroCopyBytearray 314 return (type(self)._reconstruct, 319 return (type(self)._reconstruct, 323 def _reconstruct(cls, obj, kwargs): member in PicklableNDArray
|
/third_party/python/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
|