Remove debugging print from Scope.declare_cfunction.
authorW. Trevor King <wking@drexel.edu>
Sun, 6 Mar 2011 17:31:31 +0000 (12:31 -0500)
committerW. Trevor King <wking@drexel.edu>
Sun, 6 Mar 2011 17:31:31 +0000 (12:31 -0500)
Cython/Compiler/Symtab.py

index 62b49aba68c05f266c3c50919ede283baff0a50a..14fe7939dbb9e80d94f37a46c84d96d26ca8232d 100644 (file)
@@ -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)