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
commit465e5b0880331d748a32da8aef1afae65578ac3d (patch)
tree79ccb496b0eeb22d45cefac5be8d0fcd298f6912 /Grammar
parent83ebab5626af4d6541c16d8470e7ff421d2c284b (diff)
downloadcpython-465e5b0880331d748a32da8aef1afae65578ac3d.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)* [','] )