comment
authorStefan Behnel <scoder@users.berlios.de>
Sat, 2 Apr 2011 08:51:50 +0000 (10:51 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Sat, 2 Apr 2011 08:51:50 +0000 (10:51 +0200)
Cython/Compiler/Symtab.py

index e8e4b0220db98ebe45fa4ddb42cb91b9242fd949..0b06806b42be86af87585f8fa090192717110bd3 100644 (file)
@@ -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):