summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_grammar.py
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2006-08-25 02:59:59 (GMT)
committerBrett Cannon <bcannon@gmail.com>2006-08-25 02:59:59 (GMT)
commit0b70cca9f8132b6fe03803abe9e89bd3a00a80ee (patch)
tree032e42eac6b0cf9538d10f468f820381806d1964 /Lib/test/test_grammar.py
parentdb60d6e2aa45fdc9f5f560847238a120e8a34f04 (diff)
downloadcpython-0b70cca9f8132b6fe03803abe9e89bd3a00a80ee.zip
cpython-0b70cca9f8132b6fe03803abe9e89bd3a00a80ee.tar.gz
cpython-0b70cca9f8132b6fe03803abe9e89bd3a00a80ee.tar.bz2
Remove usage of backticks.
Diffstat (limited to 'Lib/test/test_grammar.py')
-rw-r--r--Lib/test/test_grammar.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py
index 0ce43dc..331d527 100644
--- a/Lib/test/test_grammar.py
+++ b/Lib/test/test_grammar.py
@@ -685,7 +685,7 @@ print L
print 'atoms'
-### atom: '(' [testlist] ')' | '[' [testlist] ']' | '{' [dictmaker] '}' | '`' testlist '`' | NAME | NUMBER | STRING
+### atom: '(' [testlist] ')' | '[' [testlist] ']' | '{' [dictmaker] '}' | NAME | NUMBER | STRING
### dictmaker: test ':' test (',' test ':' test)* [',']
x = (1)
@@ -706,8 +706,6 @@ x = {'one': 1, 'two': 2}
x = {'one': 1, 'two': 2,}
x = {'one': 1, 'two': 2, 'three': 3, 'four': 4, 'five': 5, 'six': 6}
-x = `x`
-x = `1 or 2 or 3`
x = x
x = 'x'
x = 123