cleanup print statements
authorRobert Bradshaw <robertwb@math.washington.edu>
Wed, 8 Oct 2008 06:41:34 +0000 (23:41 -0700)
committerRobert Bradshaw <robertwb@math.washington.edu>
Wed, 8 Oct 2008 06:41:34 +0000 (23:41 -0700)
Cython/Compiler/Optimize.py

index 50f8c7c08404092784ebc513d9547c85dc5833dd..07f2e0fb42066cea6dab9d2875d9c3ac2d01946c 100644 (file)
@@ -166,12 +166,8 @@ class FinalOptimizePhase(Visitor.CythonTransform):
             if node.function.name == 'isinstance':
                 type_arg = node.args[1]
                 if type_arg.type.is_builtin_type and type_arg.type.name == 'type':
-                    print type_arg.pos
                     object_module = self.context.find_module('python_object')
-                    print object_module
-                    print object_module.entries
                     node.function.entry = object_module.lookup('PyObject_TypeCheck')
-                    print node.function.entry
                     node.function.type = node.function.entry.type
                     PyTypeObjectPtr = PyrexTypes.CPtrType(object_module.lookup('PyTypeObject').type)
                     node.args[1] = ExprNodes.CastNode(node.args[1], PyTypeObjectPtr)