HomeSort by relevance Sort by last modified time
    Searched refs:__abstractmethods__ (Results 1 - 12 of 12) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_abc.py 45 self.assertEqual(C.__abstractmethods__, set(["foo"]))
50 self.assertEqual(D.__abstractmethods__, set(["foo"]))
55 self.assertEqual(E.__abstractmethods__, set())
61 self.assertEqual(F.__abstractmethods__, set(["bar"]))
test_descr.py     [all...]
  /external/python/cpython2/Lib/test/
test_abc.py 45 self.assertEqual(C.__abstractmethods__, set(["foo"]))
50 self.assertEqual(D.__abstractmethods__, set(["foo"]))
55 self.assertEqual(E.__abstractmethods__, set())
61 self.assertEqual(F.__abstractmethods__, set(["bar"]))
test_descr.py     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
abc.py 93 for name in getattr(base, "__abstractmethods__", set()):
97 cls.__abstractmethods__ = frozenset(abstracts)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
abc.py 93 for name in getattr(base, "__abstractmethods__", set()):
97 cls.__abstractmethods__ = frozenset(abstracts)
  /external/python/cpython2/Lib/
abc.py 93 for name in getattr(base, "__abstractmethods__", set()):
97 cls.__abstractmethods__ = frozenset(abstracts)
  /external/python/cpython3/Lib/
_py_abc.py 42 for name in getattr(base, "__abstractmethods__", set()):
46 cls.__abstractmethods__ = frozenset(abstracts)
  /external/python/cpython3/Lib/test/
test_abc.py 160 self.assertEqual(C.__abstractmethods__, {"foo"})
165 self.assertEqual(D.__abstractmethods__, {"foo"})
170 self.assertEqual(E.__abstractmethods__, set())
176 self.assertEqual(F.__abstractmethods__, {"bar"})
247 self.assertEqual(A.__abstractmethods__, {"x"})
test_descr.py     [all...]
  /external/python/cpython3/Modules/
_abc.c 15 _Py_IDENTIFIER(__abstractmethods__); variable
  /external/python/cpython3/Objects/
typeobject.c 56 _Py_IDENTIFIER(__abstractmethods__); variable
527 /* type itself has an __abstractmethods__ descriptor (this). Don't return
544 /* __abstractmethods__ should only be set once on a type, in
874 {"__abstractmethods__", (getter)type_abstractmethods,
    [all...]

Completed in 956 milliseconds