Commit 5cb0fd35 authored by Robert Bradshaw's avatar Robert Bradshaw

cleanup print statements

parent 1b1d8769
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment