/external/tensorflow/tensorflow/python/tpu/ |
D | feature_column_v2.py | 443 def __getnewargs__(self): member in _TPUEmbeddingColumnV2 450 *(copy.deepcopy(a, memo) for a in self.__getnewargs__())) 638 def __getnewargs__(self): member in _TPUSharedEmbeddingColumnV2 646 *(copy.deepcopy(a, memo) for a in self.__getnewargs__())) 922 *(copy.deepcopy(a, memo) for a in self.__getnewargs__()), 1050 *(copy.deepcopy(a, memo) for a in self.__getnewargs__()),
|
/external/python/cpython2/Lib/test/ |
D | test_complex.py | 527 self.assertEqual((1+2j).__getnewargs__(), (1.0, 2.0)) 528 self.assertEqual((1-2j).__getnewargs__(), (1.0, -2.0)) 529 self.assertEqual((2j).__getnewargs__(), (0.0, 2.0)) 530 self.assertEqual((-0j).__getnewargs__(), (0.0, -0.0)) 531 self.assertEqual(complex(0, INF).__getnewargs__(), (0.0, INF)) 532 self.assertEqual(complex(INF, 0).__getnewargs__(), (INF, 0.0))
|
D | test_collections.py | 259 self.assertEqual(t.__getnewargs__(), values)
|
D | pickletester.py | 1690 def __getnewargs__(self): member in ComplexNewObj
|
D | test_descr.py | 3399 def __getnewargs__(self): member in ClassPropertiesAndMethods.test_pickles.C1 3411 def __getnewargs__(self): member in ClassPropertiesAndMethods.test_pickles.C2
|
/external/python/cpython3/Lib/test/ |
D | test_complex.py | 595 self.assertEqual((1+2j).__getnewargs__(), (1.0, 2.0)) 596 self.assertEqual((1-2j).__getnewargs__(), (1.0, -2.0)) 597 self.assertEqual((2j).__getnewargs__(), (0.0, 2.0)) 598 self.assertEqual((-0j).__getnewargs__(), (0.0, -0.0)) 599 self.assertEqual(complex(0, INF).__getnewargs__(), (0.0, INF)) 600 self.assertEqual(complex(INF, 0).__getnewargs__(), (INF, 0.0))
|
D | test_copy.py | 198 def __getnewargs__(self): member in TestCopy.test_copy_inst_getnewargs.C 494 def __getnewargs__(self): member in TestCopy.test_deepcopy_inst_getnewargs.C
|
D | test_descr.py | 5090 def __getnewargs__(self): member in PicklingTests.test_reduce.C1 5102 def __getnewargs__(self): member in PicklingTests.test_reduce.C2 5368 def __getnewargs__(cls): member in PicklingTests.test_reduce_copying.C2 5405 def __getnewargs__(cls): member in PicklingTests.test_reduce_copying.C4
|
/external/python/pyyaml/tests/lib/ |
D | test_constructor.py | 162 def __getnewargs__(self): member in _make_objects.NewArgs 168 def __getnewargs__(self): member in _make_objects.NewArgsWithState
|
/external/llvm/utils/lit/lit/ |
D | Test.py | 18 def __getnewargs__(self): member in ResultCode
|
/external/python/cpython3/Lib/collections/ |
D | __init__.py | 447 def __getnewargs__(self): function 458 __getnewargs__, 474 '__getnewargs__': __getnewargs__, 1339 def __getnewargs__(self): member in UserString
|
/external/python/jinja/src/jinja2/ |
D | utils.py | 359 def __getnewargs__(self): member in LRUCache
|
/external/libchrome/third_party/jinja2/ |
D | utils.py | 338 def __getnewargs__(self): member in LRUCache
|
/external/python/cpython2/Doc/library/ |
D | pickle.rst | 427 .. method:: object.__getnewargs__() 429 New-style types can provide a :meth:`__getnewargs__` method that is used for 438 where *args* is the result of calling :meth:`__getnewargs__` on the original 439 object; if there is no :meth:`__getnewargs__`, an empty tuple is assumed. 469 :meth:`__getnewargs__` to establish such an invariant; otherwise, neither
|
D | collections.rst | 641 def __getnewargs__(self):
|
/external/python/cpython3/Doc/library/ |
D | pickle.rst | 592 compatibility to implement :meth:`__getnewargs__`. 598 .. method:: object.__getnewargs__() 604 :meth:`__getnewargs__` will not be called if :meth:`__getnewargs_ex__` is 608 Before Python 3.6, :meth:`__getnewargs__` was called instead of
|
D | enum.rst | 1057 class are correct (such as :meth:`__new__`, :meth:`__getnewargs__`,
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0b1.rst | 204 collections.UserString now supports __getnewargs__(), __rmod__(),
|
D | 3.5.2rc1.rst | 254 __reduce_ex__, __getnewargs__, __getnewargs_ex__, or __getstate__), can no
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.12rc1.rst | 163 __reduce_ex__, __getnewargs__, __getnewargs_ex__, or __getstate__), can no
|
/external/python/enum34/enum/doc/ |
D | enum.rst | 676 class are correct (such as ``__new__``, ``__getnewargs__``,
|
/external/python/enum34/enum/ |
D | test.py | 1234 def __getnewargs__(self): member in TestEnum.test_subclasses_with_getnewargs.NamedInt
|
/external/python/cpython3/Lib/email/ |
D | _header_value_parser.py | 909 def __getnewargs__(self): member in Terminal
|
/external/python/cpython3/Lib/ |
D | turtle.py | 275 def __getnewargs__(self): member in Vec2D
|
/external/python/cpython2/Lib/lib-tk/ |
D | turtle.py | 294 def __getnewargs__(self): member in Vec2D
|