From c150536b5efadf71fcb4187cad7258be7268e157 Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Thu, 28 Dec 2006 06:47:50 +0000 Subject: PEP 3107 - Function Annotations thanks to Tony Lownds --- Lib/token.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'Lib/token.py') diff --git a/Lib/token.py b/Lib/token.py index 5f8d53a883..2770cfd675 100755 --- a/Lib/token.py +++ b/Lib/token.py @@ -60,9 +60,10 @@ DOUBLESTAREQUAL = 47 DOUBLESLASH = 48 DOUBLESLASHEQUAL = 49 AT = 50 -OP = 51 -ERRORTOKEN = 52 -N_TOKENS = 53 +RARROW = 51 +OP = 52 +ERRORTOKEN = 53 +N_TOKENS = 54 NT_OFFSET = 256 #--end constants-- -- cgit v1.2.1