summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-08-08 06:35:56 (GMT)
committerTim Peters <tim.peters@gmail.com>2001-08-08 06:35:56 (GMT)
commita38d2608bc39985192864741f69843ee2c37eb04 (patch)
tree2e9c5b5953014a60e9b90efa29dc458fe286cd74
parent257b3bfa76742ef68cfb30a087ed85a4dfc54f79 (diff)
downloadcpython-a38d2608bc39985192864741f69843ee2c37eb04.zip
cpython-a38d2608bc39985192864741f69843ee2c37eb04.tar.gz
cpython-a38d2608bc39985192864741f69843ee2c37eb04.tar.bz2
Regenerated token.py to account for new DOUBLESLASH and DOUBLESLASHEQUAL.
-rwxr-xr-xLib/token.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/Lib/token.py b/Lib/token.py
index 1c66f6d..eafbd7b 100755
--- a/Lib/token.py
+++ b/Lib/token.py
@@ -58,9 +58,11 @@ CIRCUMFLEXEQUAL = 44
LEFTSHIFTEQUAL = 45
RIGHTSHIFTEQUAL = 46
DOUBLESTAREQUAL = 47
-OP = 48
-ERRORTOKEN = 49
-N_TOKENS = 50
+DOUBLESLASH = 48
+DOUBLESLASHEQUAL = 49
+OP = 50
+ERRORTOKEN = 51
+N_TOKENS = 52
NT_OFFSET = 256
#--end constants--