Searched refs:Callable (Results 1 – 6 of 6) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_collections.py | 13 from collections import Sized, Container, Callable 415 self.assertNotIsInstance(x, Callable) 416 self.assertFalse(issubclass(type(x), Callable), repr(type(x))) 423 self.assertIsInstance(x, Callable) 424 self.assertTrue(issubclass(type(x), Callable), repr(type(x))) 425 self.validate_abstract_methods(Callable, '__call__') 426 self.validate_isinstance(Callable, '__call__') 429 for B in Hashable, Iterable, Iterator, Sized, Container, Callable: 436 for B in Hashable, Iterable, Iterator, Sized, Container, Callable:
|
D | test_weakref.py | 18 class Callable: class 256 o = Callable()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | _abcoll.py | 121 class Callable: class 130 if cls is Callable:
|
D | shutil.py | 490 if not isinstance(function, collections.Callable):
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | _abcoll.py | 120 class Callable: class 129 if cls is Callable:
|
D | shutil.py | 487 if not isinstance(function, collections.Callable):
|