From 5cb0fd35f0ac1712a4dd28073b80a72eecacd1d8 Mon Sep 17 00:00:00 2001 From: Robert Bradshaw Date: Tue, 7 Oct 2008 23:41:34 -0700 Subject: [PATCH] cleanup print statements --- Cython/Compiler/Optimize.py | 4 ---- 1 file changed, 4 deletions(-) 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) -- 2.26.2