Home
last modified time | relevance | path

Searched refs:isCallable (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_py3kwarn.py300 from operator import isCallable, sequenceIncludes
307 self.assertWarning(isCallable(self), w, callable_warn)
Dtest_operator.py191 self.assertRaises(TypeError, operator.isCallable)
196 self.assertEqual(operator.isCallable(o), v)
199 check(self, operator.isCallable, 1)
Dtest_bool.py282 self.assertIs(operator.isCallable(0), False)
283 self.assertIs(operator.isCallable(len), True)
/external/python/cpython2/Modules/
Doperator.c87 spami(isCallable , op_isCallable) in spami() argument
366 spam1o(isCallable,
/external/python/cpython3/Doc/library/
D2to3.rst354 ``operator.isCallable(obj)`` ``callable(obj)``
/external/python/cpython2/Doc/library/
Doperator.rst449 .. function:: isCallable(obj)
/external/python/cpython3/Doc/whatsnew/
D3.0.rst643 :func:`sequenceIncludes` and :func:`isCallable`.
827 ``isinstance(f, collections.Callable)``. The :func:`operator.isCallable`
D2.7.rst199 * :func:`operator.isCallable` and :func:`operator.sequenceIncludes`,
/external/python/cpython3/Misc/NEWS.d/
D3.7.0a3.rst545 Updates 2to3 to convert from operator.isCallable(obj) to callable(obj).
/external/python/cpython2/Doc/whatsnew/
D2.7.rst199 * :func:`operator.isCallable` and :func:`operator.sequenceIncludes`,
/external/python/cpython3/Misc/
DHISTORY17318 __div__, __idiv__, isCallable, sequenceIncludes.