Commit 048270fd authored by Vitja Makarov's avatar Vitja Makarov

Fix after cythonizing

parent f6e027cd
......@@ -305,7 +305,9 @@ class NameAssignment(object):
return '%s(entry=%r)' % (self.__class__.__name__, self.entry)
class Argument(NameAssignment):
is_arg = True
def __init__(self, lhs, rhs, entry):
NameAssignment.__init__(self, lhs, rhs, entry)
self.is_arg = True
class Uninitialized(object):
pass
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment