removed all the weakref stuff again. It didn't speed up anything, but made things much more complicated

This commit is contained in:
David Halter
2012-12-09 16:33:24 +01:00
parent ac610f97fb
commit 6bdda36205
11 changed files with 119 additions and 124 deletions
+3 -4
View File
@@ -36,11 +36,10 @@ class Keyword(object):
def __init__(self, name, pos):
self.name = name
self.start_pos = pos
self.parent = builtin.Builtin.scope
def parent(self):
return builtin.Builtin.scope
get_parent_until = parent
def get_parent_until(self):
return self.parent
@property
def names(self):