diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-06-08 02:05:33 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-06-08 02:05:33 (GMT) |
commit | 2fe3ef8750e7f06ebf250bb2264f71d5f96e2f9b (patch) | |
tree | 98de05d124b4a128c7e43677f2b71019819a63d0 | |
parent | 1f1174edf363609d501f2677f43bfbdbabb081e5 (diff) | |
download | cpython-2fe3ef8750e7f06ebf250bb2264f71d5f96e2f9b.zip cpython-2fe3ef8750e7f06ebf250bb2264f71d5f96e2f9b.tar.gz cpython-2fe3ef8750e7f06ebf250bb2264f71d5f96e2f9b.tar.bz2 |
change Py3k backquote warning to a SyntaxWarning and add a test
-rw-r--r-- | Lib/test/test_py3kwarn.py | 6 | ||||
-rw-r--r-- | Python/ast.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/Lib/test/test_py3kwarn.py b/Lib/test/test_py3kwarn.py index 664df44..617d996 100644 --- a/Lib/test/test_py3kwarn.py +++ b/Lib/test/test_py3kwarn.py @@ -10,6 +10,12 @@ if not sys.py3kwarning: class TestPy3KWarnings(unittest.TestCase): + def test_backquote(self): + expected = 'backquote not supported in 3.x; use repr()' + with catch_warning() as w: + exec "`2`" in {} + self.assertWarning(None, w, expected) + def test_type_inequality_comparisons(self): expected = 'type inequality comparisons not supported in 3.x' with catch_warning() as w: diff --git a/Python/ast.c b/Python/ast.c index 0bc7595..863906f 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -1364,7 +1364,7 @@ ast_for_atom(struct compiling *c, const node *n) case BACKQUOTE: { /* repr */ expr_ty expression; if (Py_Py3kWarningFlag) { - if (PyErr_WarnExplicit(PyExc_DeprecationWarning, + if (PyErr_WarnExplicit(PyExc_SyntaxWarning, "backquote not supported in 3.x; use repr()", c->c_filename, LINENO(n), NULL, NULL)) { |