commit | cf588f6448f8adfa12886f42db4d1c4ad3544da5 | [log] [tgz] |
---|---|---|
author | Brett Cannon <bcannon@gmail.com> | Fri Aug 25 04:28:18 2006 +0000 |
committer | Brett Cannon <bcannon@gmail.com> | Fri Aug 25 04:28:18 2006 +0000 |
tree | 47cb062874fff18940e7efee1d9001920753fbad | |
parent | 8b6de130c64ace2a5bd56ec619eb54216676b613 [diff] |
Remove support for backticks from the grammar and compiler. Still need to remove traces of the UNARY_CONVERT opcode.
diff --git a/Lib/tokenize.py b/Lib/tokenize.py index 27d566a..5d65267 100644 --- a/Lib/tokenize.py +++ b/Lib/tokenize.py
@@ -83,7 +83,7 @@ r"~") Bracket = '[][(){}]' -Special = group(r'\r?\n', r'[:;.,`@]') +Special = group(r'\r?\n', r'[:;.,@]') Funny = group(Operator, Bracket, Special) PlainToken = group(Number, Funny, String, Name)