/external/python/cpython3/Lib/test/ |
D | test_pickle.py | 263 self.assertEqual(object.__sizeof__(p), basesize) 287 self.assertEqual(object.__sizeof__(u), basesize)
|
D | test_sys.py | 887 def __sizeof__(self): member in SizeofTest.test_errors.BadSizeof 892 def __sizeof__(self): member in SizeofTest.test_errors.InvalidSizeof 899 def __sizeof__(self): member in SizeofTest.test_errors.FloatSizeof 905 def __sizeof__(self): member in SizeofTest.test_errors.OverflowSizeof
|
D | test_memoryio.py | 760 self.assertEqual(object.__sizeof__(io.BytesIO()), basesize)
|
D | test_decimal.py | 5441 self.assertGreater(Decimal(0).__sizeof__(), 0) 5443 x = Decimal(10**(19*24)).__sizeof__() 5444 y = Decimal(10**(19*25)).__sizeof__() 5447 x = Decimal(10**(9*24)).__sizeof__() 5448 y = Decimal(10**(9*25)).__sizeof__()
|
D | test_deque.py | 759 self.assertEqual(object.__sizeof__(deque()), basesize)
|
/external/python/cpython2/Lib/test/ |
D | test_sys.py | 512 def __sizeof__(self): member in SizeofTest.test_errors.BadSizeof 517 def __sizeof__(self): member in SizeofTest.test_errors.InvalidSizeof 524 def __sizeof__(self): member in SizeofTest.test_errors.OverflowSizeof
|
D | test_deque.py | 528 self.assertEqual(object.__sizeof__(deque()), basesize)
|
D | test_memoryio.py | 705 self.assertEqual(object.__sizeof__(io.BytesIO()), basesize)
|
D | _mock_backport.py | 1712 '__sizeof__': lambda self: object.__sizeof__(self),
|
/external/tensorflow/tensorflow/python/training/tracking/ |
D | data_structures.py | 351 def __sizeof__(self): member in List 352 return super(List, self).__sizeof__() + sys.getsizeof(self._storage)
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0a3.rst | 56 Fix the default __sizeof__ implementation for variable-sized objects.
|
D | 3.5.2rc1.rst | 283 __sizeof__ methods of builtin types now use dynamic basic size. This allows 1398 Fixed and simplified OrderedDict.__sizeof__.
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.4rc1.rst | 1719 Add a __sizeof__ implementation for array objects. Patch by Ludwig Hähne. 1747 Add a __sizeof__ implementation for BytesIO objects. Patch by Serhiy 1757 Add a __sizeof__ implementation for deque objects. Patch by Serhiy 1767 Add a __sizeof__ implementation for buffered I/O objects. Patch by Serhiy 1777 Add a __sizeof__ implementation for parser. Patch by Serhiy Storchaka.
|
D | 2.7.10rc1.rst | 26 Fix the default __sizeof__ implementation for variable-sized objects.
|
D | 2.7.9rc1.rst | 621 Add a __sizeof__ implementation for mmap objects on Windows.
|
D | 2.7.12rc1.rst | 183 __sizeof__ methods of builtin types now use dynamic basic size. This allows
|
D | 2.7.3rc1.rst | 1672 Move helpers for __sizeof__ tests into test_support. Patch by Serhiy
|
/external/python/cpython3/Lib/collections/ |
D | __init__.py | 215 def __sizeof__(self): member in OrderedDict
|
/external/python/cpython3/Doc/faq/ |
D | general.rst | 421 '__sizeof__', '__str__', '__subclasshook__', 'append', 'clear',
|
/external/python/cpython3/Python/ |
D | sysmodule.c | 45 _Py_IDENTIFIER(__sizeof__);
|
/external/python/cpython2/Doc/faq/ |
D | general.rst | 425 '__setattr__', '__setitem__', '__setslice__', '__sizeof__', '__str__',
|
/external/pdfium/third_party/pymock/ |
D | mock.py | 1768 '__sizeof__': lambda self: object.__sizeof__(self),
|
/external/python/pyasn1/ |
D | CHANGES.rst | 202 - Missing support for NoValue.__sizeof__ added.
|
/external/python/cpython3/Lib/unittest/ |
D | mock.py | 1773 '__sizeof__': lambda self: object.__sizeof__(self),
|
/external/python/mock/mock/ |
D | mock.py | 1880 '__sizeof__': lambda self: object.__sizeof__(self),
|