diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-11-04 19:25:22 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-11-04 19:25:22 (GMT) |
commit | 85dbec6da74d4e5e83d0ff9c03155ecef8feea83 (patch) | |
tree | 98532558dae02efb86e36d8fcac7aefa695a1ea5 /Lib/test/test_grammar.py | |
parent | 5310e5078ad331631f109e8fa33b8534911f0ce0 (diff) | |
download | cpython-85dbec6da74d4e5e83d0ff9c03155ecef8feea83.zip cpython-85dbec6da74d4e5e83d0ff9c03155ecef8feea83.tar.gz cpython-85dbec6da74d4e5e83d0ff9c03155ecef8feea83.tar.bz2 |
Bug #1588287: fix invalid assertion for `1,2` in debug builds.
Will backport
Diffstat (limited to 'Lib/test/test_grammar.py')
-rw-r--r-- | Lib/test/test_grammar.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py index 69e1980..14ce7e4 100644 --- a/Lib/test/test_grammar.py +++ b/Lib/test/test_grammar.py @@ -747,6 +747,8 @@ hello world x = `x` x = `1 or 2 or 3` + self.assertEqual(`1,2`, '(1, 2)') + x = x x = 'x' x = 123 |