From: Robert Bradshaw Date: Wed, 8 Oct 2008 06:41:34 +0000 (-0700) Subject: cleanup print statements X-Git-Tag: 0.9.9.2.beta~58 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5cb0fd35f0ac1712a4dd28073b80a72eecacd1d8;p=cython.git cleanup print statements --- diff --git a/Cython/Compiler/Optimize.py b/Cython/Compiler/Optimize.py index 50f8c7c0..07f2e0fb 100644 --- a/Cython/Compiler/Optimize.py +++ b/Cython/Compiler/Optimize.py @@ -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)