removed callable() again
authorStefan Behnel <scoder@users.berlios.de>
Sat, 15 Sep 2007 13:29:25 +0000 (15:29 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Sat, 15 Sep 2007 13:29:25 +0000 (15:29 +0200)
Cython/Compiler/Symtab.py

index 3f2286d11e90b74cf77fd66abeae1db8fb6f11ba..987131d32114701111c27e67807e45cedc5feeca 100644 (file)
@@ -521,7 +521,6 @@ class BuiltinScope(Scope):
       "unicode": ["PyObject_Unicode", py_object_type, (py_object_type, ), 0],
       "isinstance": ["PyObject_IsInstance", c_bint_type, (py_object_type, py_object_type), -1],
       "issubclass": ["PyObject_IsSubclass", c_bint_type, (py_object_type, py_object_type), -1],
-      "callable":["PyCallable_Check", c_bint_type, (py_object_type, )],
       "hash":    ["PyObject_Hash", c_long_type, (py_object_type, ), -1, True],
       "type":    ["PyObject_Type", py_object_type, (py_object_type, ), 0],
       "len":     ["PyObject_Size", c_py_ssize_t_type, (py_object_type, ), -1],