aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/test/test_exceptions.py
diff options
context:
space:
mode:
authorPablo Galindo Salgado <Pablogsal@gmail.com>2021-07-27 21:30:32 +0100
committerGitHub <noreply@github.com>2021-07-27 21:30:32 +0100
commitecc3c8e4216958d85385bf2467441c975128f26c (patch)
treecba394460a49c48aee128b4c9fe1b87c83b0b770 /Lib/test/test_exceptions.py
parent6948964ecf94e858448dd28eea634317226d2913 (diff)
downloadcpython-ecc3c8e4216958d85385bf2467441c975128f26c.tar.gz
cpython-ecc3c8e4216958d85385bf2467441c975128f26c.zip
bpo-34013: Move the Python 2 hints from the exception constructor to the parser (GH-27392)
Diffstat (limited to 'Lib/test/test_exceptions.py')
-rw-r--r--Lib/test/test_exceptions.py12
1 files changed, 5 insertions, 7 deletions
diff --git a/Lib/test/test_exceptions.py b/Lib/test/test_exceptions.py
index 8ebed02ca4b..8ea415f45a6 100644
--- a/Lib/test/test_exceptions.py
+++ b/Lib/test/test_exceptions.py
@@ -168,21 +168,19 @@ class ExceptionTests(unittest.TestCase):
self.fail("failed to get expected SyntaxError")
s = '''print "old style"'''
- ckmsg(s, "Missing parentheses in call to 'print'. "
- "Did you mean print(\"old style\")?")
+ ckmsg(s, "Missing parentheses in call to 'print'. Did you mean print(...)?")
s = '''print "old style",'''
- ckmsg(s, "Missing parentheses in call to 'print'. "
- "Did you mean print(\"old style\", end=\" \")?")
+ ckmsg(s, "Missing parentheses in call to 'print'. Did you mean print(...)?")
s = 'print f(a+b,c)'
- ckmsg(s, "Missing parentheses in call to 'print'.")
+ ckmsg(s, "Missing parentheses in call to 'print'. Did you mean print(...)?")
s = '''exec "old style"'''
- ckmsg(s, "Missing parentheses in call to 'exec'")
+ ckmsg(s, "Missing parentheses in call to 'exec'. Did you mean exec(...)?")
s = 'exec f(a+b,c)'
- ckmsg(s, "Missing parentheses in call to 'exec'.")
+ ckmsg(s, "Missing parentheses in call to 'exec'. Did you mean exec(...)?")
# should not apply to subclasses, see issue #31161
s = '''if True:\nprint "No indent"'''