From: W. Trevor King Date: Sun, 6 Mar 2011 17:31:31 +0000 (-0500) Subject: Remove debugging print from Scope.declare_cfunction. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=31202ce9cf0d162ed385f99db4bc664afa7ab224;p=cython.git Remove debugging print from Scope.declare_cfunction. --- diff --git a/Cython/Compiler/Symtab.py b/Cython/Compiler/Symtab.py index 62b49aba..14fe7939 100644 --- a/Cython/Compiler/Symtab.py +++ b/Cython/Compiler/Symtab.py @@ -665,7 +665,6 @@ class Scope(object): warning(pos, "Function signature does not match previous declaration", 1) entry.type = type else: - print 'EE', entry, binding.extern, entry.extern error(pos, "Function signature does not match previous declaration") else: entry = self.add_cfunction(binding, pos, type, modifiers)