diff options
author | Collin Winter <collinw@gmail.com> | 2007-03-21 20:10:51 (GMT) |
---|---|---|
committer | Collin Winter <collinw@gmail.com> | 2007-03-21 20:10:51 (GMT) |
commit | 390d29ca743d262cf667a794af71f141a7a161f6 (patch) | |
tree | 58597de1d1afc12d23b88be69535d958ec73d90e /Lib/test/test_bool.py | |
parent | 7d71fb8132d1ce0c49ad4557b89da592120cf118 (diff) | |
download | cpython-390d29ca743d262cf667a794af71f141a7a161f6.zip cpython-390d29ca743d262cf667a794af71f141a7a161f6.tar.gz cpython-390d29ca743d262cf667a794af71f141a7a161f6.tar.bz2 |
Remove isCallable() and sequenceIncludes() from the operator module.
Diffstat (limited to 'Lib/test/test_bool.py')
-rw-r--r-- | Lib/test/test_bool.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/test/test_bool.py b/Lib/test/test_bool.py index 1d9a60b..1e19cf5 100644 --- a/Lib/test/test_bool.py +++ b/Lib/test/test_bool.py @@ -257,8 +257,6 @@ class BoolTest(unittest.TestCase): import operator self.assertIs(operator.truth(0), False) self.assertIs(operator.truth(1), True) - self.assertIs(operator.isCallable(0), False) - self.assertIs(operator.isCallable(len), True) self.assertIs(operator.isNumberType(None), False) self.assertIs(operator.isNumberType(0), True) self.assertIs(operator.not_(1), False) |