We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20c571d commit 59237faCopy full SHA for 59237fa
Lib/test/test_py3kwarn.py
@@ -45,11 +45,6 @@ def test_backquote(self):
45
with check_py3k_warnings((expected, SyntaxWarning)):
46
exec "`2`" in {}
47
48
- def test_except(self):
49
- expected = 'backquote not supported in 3.x; use repr()'
50
- with check_py3k_warnings((expected, SyntaxWarning)):
51
- exec "`2`" in {}
52
-
53
def test_paren_arg_names(self):
54
expected = 'parenthesized argument names are invalid in 3.x'
55
def check(s):
0 commit comments