Issue 2117. Update compiler module to handle class decorators.

Thanks Thomas Herve
This commit is contained in:
Facundo Batista 2008-02-25 18:06:00 +00:00
parent a3c8c10201
commit 4219da4bd0
4 changed files with 21 additions and 4 deletions

View file

@ -71,6 +71,7 @@ tok_name = {}
for _name, _value in globals().items():
if type(_value) is type(0):
tok_name[_value] = _name
del _name, _value
def ISTERMINAL(x):