From: Stefan Behnel Date: Sat, 2 Apr 2011 08:51:50 +0000 (+0200) Subject: comment X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=21f87d6f2d7bdde071839fa8ed2802ecf807d55d;p=cython.git comment --- diff --git a/Cython/Compiler/Symtab.py b/Cython/Compiler/Symtab.py index e8e4b022..0b06806b 100644 --- a/Cython/Compiler/Symtab.py +++ b/Cython/Compiler/Symtab.py @@ -1500,6 +1500,8 @@ class PyClassScope(ClassScope): if entry is None: error(pos, "no binding for nonlocal '%s' found" % name) else: + # FIXME: this works, but it's unclear if it's the + # right thing to do self.entries[name] = entry def add_default_value(self, type):