From: Stefan Behnel Date: Thu, 21 Apr 2011 06:18:13 +0000 (+0200) Subject: fix compiler crash on uncachable builtins X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=cde4a3713409351e41c46716cc1cd12e5fefc568;p=cython.git fix compiler crash on uncachable builtins --- diff --git a/Cython/Compiler/Symtab.py b/Cython/Compiler/Symtab.py index cae9e1ab..70e6a002 100644 --- a/Cython/Compiler/Symtab.py +++ b/Cython/Compiler/Symtab.py @@ -945,6 +945,7 @@ class ModuleScope(Scope): self.undeclared_cached_builtins.append(entry) else: entry.is_builtin = 1 + entry.name = name return entry def find_module(self, module_name, pos):