summaryrefslogtreecommitdiff
path: root/Grammar
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2006-08-25 04:28:18 +0000
committerBrett Cannon <bcannon@gmail.com>2006-08-25 04:28:18 +0000
commitcf588f6448f8adfa12886f42db4d1c4ad3544da5 (patch)
tree47cb062874fff18940e7efee1d9001920753fbad /Grammar
parent8b6de130c64ace2a5bd56ec619eb54216676b613 (diff)
downloadcpython-git-cf588f6448f8adfa12886f42db4d1c4ad3544da5.tar.gz
Remove support for backticks from the grammar and compiler.
Still need to remove traces of the UNARY_CONVERT opcode.
Diffstat (limited to 'Grammar')
-rw-r--r--Grammar/Grammar1
1 files changed, 0 insertions, 1 deletions
diff --git a/Grammar/Grammar b/Grammar/Grammar
index cab3b9b7eb..31551f646e 100644
--- a/Grammar/Grammar
+++ b/Grammar/Grammar
@@ -102,7 +102,6 @@ power: atom trailer* ['**' factor]
atom: ('(' [yield_expr|testlist_gexp] ')' |
'[' [listmaker] ']' |
'{' [dictmaker] '}' |
- '`' testlist1 '`' |
NAME | NUMBER | STRING+)
listmaker: test ( list_for | (',' test)* [','] )
testlist_gexp: test ( gen_for | (',' test)* [','] )