From 2fe3ef8750e7f06ebf250bb2264f71d5f96e2f9b Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Sun, 8 Jun 2008 02:05:33 +0000 Subject: change Py3k backquote warning to a SyntaxWarning and add a test --- Python/ast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python') diff --git a/Python/ast.c b/Python/ast.c index 0bc75956e8..863906f65a 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)) { -- cgit v1.2.1