/external/tensorflow/tensorflow/python/platform/ |
D | flags.py | 93 def __dir__(self): member in _FlagValuesWrapper 94 return self.__dict__['__wrapped'].__dir__()
|
/external/python/cpython3/Lib/test/ |
D | bad_getattr.py | 4 __dir__ = "Surprise again!" variable
|
D | bad_getattr2.py | 6 def __dir__(bad_sig): function
|
D | good_getattr.py | 3 def __dir__(): function
|
D | test_pydoc.py | 1101 def __dir__(cls): member in PydocWithMetaClasses.test_virtualClassAttributeWithOneMeta.Meta 1122 def __dir__(cls): member in PydocWithMetaClasses.test_virtualClassAttributeWithTwoMeta.Meta1 1129 def __dir__(cls): member in PydocWithMetaClasses.test_virtualClassAttributeWithTwoMeta.Meta2 1136 def __dir__(cls): member in PydocWithMetaClasses.test_virtualClassAttributeWithTwoMeta.Meta3 1139 Meta1.__dir__(cls) + Meta2.__dir__(cls)))) 1168 def __dir__(cls): member in PydocWithMetaClasses.test_buggy_dir.M
|
D | test_inspect.py | 1020 def __dir__(self): member in TestClassesAndFunctions.test_classify_metaclass_class_attribute.Meta 1029 def __dir__(cls): member in TestClassesAndFunctions.test_classify_VirtualAttribute.Meta 1042 def __dir__(cls): member in TestClassesAndFunctions.test_classify_VirtualAttribute_multi_classes.Meta1 1049 def __dir__(cls): member in TestClassesAndFunctions.test_classify_VirtualAttribute_multi_classes.Meta2 1056 def __dir__(cls): member in TestClassesAndFunctions.test_classify_VirtualAttribute_multi_classes.Meta3 1058 Meta1.__dir__(cls) + Meta2.__dir__(cls)))) 1077 def __dir__(cls): member in TestClassesAndFunctions.test_classify_class_attrs_with_buggy_dir.M 1142 def __dir__(cls): member in TestClassesAndFunctions.test_getmembers_with_buggy_dir.M
|
D | test_builtin.py | 414 def __dir__(self): member in BuiltinTest.test_dir.Foo 421 def __dir__(self): member in BuiltinTest.test_dir.Foo 429 def __dir__(self): member in BuiltinTest.test_dir.Foo 441 self.assertEqual(sorted([].__dir__()), dir([]))
|
/external/python/cpython3/Lib/concurrent/futures/ |
D | __init__.py | 35 def __dir__(): function
|
/external/tensorflow/tensorflow/python/util/ |
D | lazy_loader.py | 64 def __dir__(self): member in LazyLoader
|
/external/scapy/scapy/modules/ |
D | six.py | 135 def __dir__(self): member in _LazyModule 489 def __dir__(self): member in Module_six_moves_urllib
|
/external/python/setuptools/pkg_resources/_vendor/ |
D | six.py | 130 def __dir__(self): member in _LazyModule 479 def __dir__(self): member in Module_six_moves_urllib
|
/external/python/setuptools/setuptools/_vendor/ |
D | six.py | 130 def __dir__(self): member in _LazyModule 479 def __dir__(self): member in Module_six_moves_urllib
|
/external/python/six/ |
D | six.py | 130 def __dir__(self): member in _LazyModule 485 def __dir__(self): member in Module_six_moves_urllib
|
D | CHANGES | 173 - Pull request #24: Add __dir__ special method to six.moves modules.
|
/external/python/cpython3/Lib/ |
D | enum.py | 331 def __dir__(self): member in EnumMeta 586 def __dir__(self): member in Enum
|
/external/python/cpython3/Lib/unittest/test/testmock/ |
D | testmagicmethods.py | 385 mock.__dir__ = _dir
|
/external/python/mock/mock/tests/ |
D | testmagicmethods.py | 447 mock.__dir__ = _dir
|
/external/python/cpython2/Lib/test/ |
D | _mock_backport.py | 657 def __dir__(self): member in NonCallableMock 660 return object.__dir__(self)
|
D | test_builtin.py | 317 def __dir__(self): member in BuiltinTest.test_dir.Foo 324 def __dir__(self): member in BuiltinTest.test_dir.Foo
|
/external/python/cpython3/Lib/unittest/ |
D | mock.py | 676 def __dir__(self): member in NonCallableMock 679 return object.__dir__(self)
|
/external/python/mock/mock/ |
D | mock.py | 781 def __dir__(self): member in NonCallableMock 785 return object.__dir__(self)
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.2rc1.rst | 18 Correct lookup of __dir__ on objects. This allows old-style classes to have 19 __dir__. It also causes errors besides AttributeError found on lookup to be
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.0a4.rst | 185 :pep:`562`: Add support for module ``__getattr__`` and ``__dir__``. Implemented
|
/external/python/cpython3/Doc/reference/ |
D | datamodel.rst | 1543 .. method:: object.__dir__(self) 1554 single: __dir__ (module attribute) 1557 Special names ``__getattr__`` and ``__dir__`` can be also used to customize 1566 The ``__dir__`` function should accept no arguments, and return a list of 1597 ``__getattr__`` and ``__dir__`` module attributes. 1601 :pep:`562` - Module __getattr__ and __dir__ 1602 Describes the ``__getattr__`` and ``__dir__`` functions on modules.
|
/external/python/cpython3/Objects/ |
D | object.c | 15 _Py_IDENTIFIER(__dir__);
|