/external/python/cpython2/Lib/ |
D | copy.py | 127 args = x.__getinitargs__() 287 args = x.__getinitargs__()
|
D | pickle.py | 704 args = obj.__getinitargs__()
|
/external/python/cpython2/Lib/test/ |
D | test_copy.py | 170 def __getinitargs__(self): member in TestCopy.test_copy_inst_getinitargs.C 393 def __getinitargs__(self): member in TestCopy.test_deepcopy_inst_getinitargs.C
|
D | pickletester.py | 144 def __getinitargs__(self): member in E 158 def __getinitargs__(self): member in I 194 def __getinitargs__(self): member in initarg
|
/external/python/cpython3/Lib/test/ |
D | test_copy.py | 184 def __getinitargs__(self): member in TestCopy.test_copy_inst_getinitargs.C 477 def __getinitargs__(self): member in TestCopy.test_deepcopy_inst_getinitargs.C
|
D | pickletester.py | 105 def __getinitargs__(self): member in E 142 def __getinitargs__(self): member in initarg
|
/external/python/cpython2/Doc/library/ |
D | pickle.rst | 416 .. method:: object.__getinitargs__() 421 :meth:`__getinitargs__`, which should return a *tuple* of positional 423 example). Keyword arguments are not supported. The :meth:`__getinitargs__` 468 true, the type should implement either :meth:`__getinitargs__` or
|
/external/python/cpython3/Lib/ |
D | datetime.py | 2163 def __getinitargs__(self): member in timezone
|
/external/python/cpython3/Doc/library/ |
D | unittest.mock.rst | 1712 * Pickling: ``__reduce__``, ``__reduce_ex__``, ``__getinitargs__``, 1840 * ``__reduce__``, ``__reduce_ex__``, ``__getinitargs__``, ``__getnewargs__``,
|
/external/python/cpython2/Modules/ |
D | cPickle.c | 5887 INIT_STR(__getinitargs__); in init_stuff()
|
/external/python/cpython3/Modules/ |
D | _datetimemodule.c | 3505 _Py_IDENTIFIER(__getinitargs__); in tzinfo_reduce()
|
D | _pickle.c | 5338 _Py_IDENTIFIER(__getinitargs__); in instantiate()
|
/external/python/cpython2/Misc/ |
D | HISTORY | 12383 class that doesn't define the __getinitargs__() method, the __init__() 12386 To force calling __init__() on unpickling, define a __getinitargs__() 12859 - copy.py: Make sure the objects returned by __getinitargs__() are 12862 __getinitargs__() to return a tuple that happens to be allocated at
|
/external/python/cpython3/Misc/ |
D | HISTORY | 29762 class that doesn't define the __getinitargs__() method, the __init__() 29765 To force calling __init__() on unpickling, define a __getinitargs__() 30238 - copy.py: Make sure the objects returned by __getinitargs__() are 30241 __getinitargs__() to return a tuple that happens to be allocated at
|