diff options
Diffstat (limited to 'Lib/token.py')
-rwxr-xr-x | Lib/token.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/token.py b/Lib/token.py index c4db6c511a..8d5cdaa175 100755 --- a/Lib/token.py +++ b/Lib/token.py @@ -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): |