commit | c150536b5efadf71fcb4187cad7258be7268e157 | [log] [tgz] |
---|---|---|
author | Neal Norwitz <nnorwitz@gmail.com> | Thu Dec 28 06:47:50 2006 +0000 |
committer | Neal Norwitz <nnorwitz@gmail.com> | Thu Dec 28 06:47:50 2006 +0000 |
tree | aeb17f5e0ecc6cc8ccdecb2b64e3f46a0a3af85c | |
parent | f6657e67b3cf89649d14d9012b3964a3490d45b0 [diff] [blame] |
PEP 3107 - Function Annotations thanks to Tony Lownds
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c index 947ad9c..4c3c29e 100644 --- a/Parser/tokenizer.c +++ b/Parser/tokenizer.c
@@ -92,6 +92,7 @@ "DOUBLESLASH", "DOUBLESLASHEQUAL", "AT", + "RARROW", /* This table must match the #defines in token.h! */ "OP", "<ERRORTOKEN>", @@ -998,6 +999,7 @@ case '-': switch (c2) { case '=': return MINEQUAL; + case '>': return RARROW; } break; case '*':