From b8e78260855e589f81804ddd333d4ba2def1faea Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Sat, 15 Sep 2007 15:29:25 +0200 Subject: [PATCH] removed callable() again --- Cython/Compiler/Symtab.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Cython/Compiler/Symtab.py b/Cython/Compiler/Symtab.py index 3f2286d1..987131d3 100644 --- a/Cython/Compiler/Symtab.py +++ b/Cython/Compiler/Symtab.py @@ -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], -- 2.26.2