/external/python/jinja/src/jinja2/ |
D | debug.py | 241 ("PyObject_HEAD", ctypes.c_byte * object().__sizeof__()),
|
/external/python/cpython3/Lib/test/ |
D | test_pickle.py | 277 self.assertEqual(object.__sizeof__(p), basesize) 301 self.assertEqual(object.__sizeof__(u), basesize)
|
D | test_sys.py | 1076 def __sizeof__(self): member in SizeofTest.test_errors.BadSizeof 1081 def __sizeof__(self): member in SizeofTest.test_errors.InvalidSizeof 1088 def __sizeof__(self): member in SizeofTest.test_errors.FloatSizeof 1094 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 | 5443 self.assertGreater(Decimal(0).__sizeof__(), 0) 5445 x = Decimal(10**(19*24)).__sizeof__() 5446 y = Decimal(10**(19*25)).__sizeof__() 5449 x = Decimal(10**(9*24)).__sizeof__() 5450 y = Decimal(10**(9*25)).__sizeof__()
|
D | test_deque.py | 779 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 | 423 def __sizeof__(self): member in List 424 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 1397 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
|
/external/python/cpython3/Lib/collections/ |
D | __init__.py | 223 def __sizeof__(self): member in OrderedDict
|
/external/python/cpython3/Doc/faq/ |
D | general.rst | 418 '__sizeof__', '__str__', '__subclasshook__', 'append', 'clear',
|
/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/cpython3/Python/ |
D | sysmodule.c | 53 _Py_IDENTIFIER(__sizeof__);
|
/external/python/mock/mock/ |
D | mock.py | 1908 '__sizeof__': lambda self: object.__sizeof__(self),
|
/external/python/pyasn1/ |
D | CHANGES.rst | 283 - Missing support for NoValue.__sizeof__ added.
|
/external/python/cpython3/Lib/unittest/ |
D | mock.py | 1947 '__sizeof__': lambda self: object.__sizeof__(self),
|