From: Stefan Behnel Date: Sat, 15 Sep 2007 13:29:25 +0000 (+0200) Subject: removed callable() again X-Git-Tag: 0.9.6.14~29^2~129^2~3 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=b8e78260855e589f81804ddd333d4ba2def1faea;p=cython.git removed callable() again --- 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],