Home
last modified time | relevance | path

Searched refs:isCallable (Results 1 – 6 of 6) 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/cpython2/Doc/library/
Doperator.rst449 .. function:: isCallable(obj)
/external/python/cpython2/Doc/whatsnew/
D2.7.rst199 * :func:`operator.isCallable` and :func:`operator.sequenceIncludes`,