diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-11-04 19:32:54 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-11-04 19:32:54 (GMT) |
commit | a3ce6aa8b73ef32865c5d42fea61d045e3ce8d4e (patch) | |
tree | 131cd346cce0c0a825b5206e82f28e4ae13a2ee0 /Lib | |
parent | 56602a14e63ef610d45a4f443c3b7410453895e8 (diff) | |
download | cpython-a3ce6aa8b73ef32865c5d42fea61d045e3ce8d4e.zip cpython-a3ce6aa8b73ef32865c5d42fea61d045e3ce8d4e.tar.gz cpython-a3ce6aa8b73ef32865c5d42fea61d045e3ce8d4e.tar.bz2 |
Backport 52621:
Bug #1588287: fix invalid assertion for `1,2` in debug builds.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_grammar.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py index c39e416..76483f6 100644 --- a/Lib/test/test_grammar.py +++ b/Lib/test/test_grammar.py @@ -709,6 +709,7 @@ x = {'one': 1, 'two': 2, 'three': 3, 'four': 4, 'five': 5, 'six': 6} x = `x` x = `1 or 2 or 3` +x = `1,2` x = x x = 'x' x = 123 |