summaryrefslogtreecommitdiff
path: root/Lib/token.py
diff options
context:
space:
mode:
authorFacundo Batista <facundobatista@gmail.com>2008-02-25 18:06:00 +0000
committerFacundo Batista <facundobatista@gmail.com>2008-02-25 18:06:00 +0000
commit4219da4bd0bd46733e6c07ea33c57d45e11641cf (patch)
treec134c4de7dc6a217c0cb719e555386894fd41e8a /Lib/token.py
parenta3c8c10201fb38fb078a4ad2758d945d44c07a5f (diff)
downloadcpython-git-4219da4bd0bd46733e6c07ea33c57d45e11641cf.tar.gz
Issue 2117. Update compiler module to handle class decorators.
Thanks Thomas Herve
Diffstat (limited to 'Lib/token.py')
-rwxr-xr-xLib/token.py1
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):