diff options
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 69e1980158..14ce7e49a8 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 |