diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-04-12 16:33:54 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-04-12 16:33:54 (GMT) |
commit | a07614aa3156810a88404ad49b18ba7be9866f11 (patch) | |
tree | cfb723a6b958488185976309dfac97cc70868c8b /Lib/test | |
parent | 7e50978a4e36cd4ab4b363ee0c77abefc13e2c23 (diff) | |
parent | c6ec54d8eb47e685dfcc489d4c6e2a78bb817ef0 (diff) | |
download | cpython-a07614aa3156810a88404ad49b18ba7be9866f11.zip cpython-a07614aa3156810a88404ad49b18ba7be9866f11.tar.gz cpython-a07614aa3156810a88404ad49b18ba7be9866f11.tar.bz2 |
Merge 3.5
Diffstat (limited to 'Lib/test')
-rw-r--r-- | Lib/test/test_grammar.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_grammar.py b/Lib/test/test_grammar.py index 8f8d71c..331f48c 100644 --- a/Lib/test/test_grammar.py +++ b/Lib/test/test_grammar.py @@ -1032,7 +1032,7 @@ class GrammarTests(unittest.TestCase): # Test ifelse expressions in various cases def _checkeval(msg, ret): "helper to check that evaluation of expressions is done correctly" - print(x) + print(msg) return ret # the next line is not allowed anymore |