From: Robert Bradshaw Date: Wed, 29 Oct 2008 04:52:28 +0000 (-0700) Subject: Less string pxd function checking X-Git-Tag: 0.9.9.2.beta~2^2 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=aca194ad713150833a6c2317e5a275376676c687;p=cython.git Less string pxd function checking --- diff --git a/Cython/Compiler/Symtab.py b/Cython/Compiler/Symtab.py index 6c906c5e..c6a697af 100644 --- a/Cython/Compiler/Symtab.py +++ b/Cython/Compiler/Symtab.py @@ -1126,6 +1126,7 @@ class ModuleScope(Scope): for name, entry in self.entries.items(): if entry.is_cfunction: if (entry.defined_in_pxd + and entry.scope is self and entry.visibility != 'extern' and not entry.in_cinclude and not entry.is_implemented):