better error message
authorStefan Behnel <scoder@users.berlios.de>
Sat, 16 Aug 2008 11:45:32 +0000 (13:45 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Sat, 16 Aug 2008 11:45:32 +0000 (13:45 +0200)
Cython/Compiler/Symtab.py

index 5c70dcb35c9022fc31d3878a5386fefdeb17bba2..5b547b89b8fbe8527b888fa2b85b612e5e3396ea 100644 (file)
@@ -440,7 +440,7 @@ class Scope:
         if api:
             entry.api = 1
         if not defining and not in_pxd and visibility != 'extern':
-            error(pos, "Non-extern C function declared but not defined")
+            error(pos, "Non-extern C function '%s' declared but not defined" % name)
         return entry
     
     def add_cfunction(self, name, type, pos, cname, visibility):