diff options
author | Georg Brandl <georg@python.org> | 2008-03-25 08:29:14 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-03-25 08:29:14 (GMT) |
commit | d5b635f1969fdd609f0aff5669c9ec30e61be62e (patch) | |
tree | 1c854f8108e2b22d8c5ba4d529b6d99cd9f5f244 /Python/ast.c | |
parent | 80055f6295dd48274ae68d13806c7ee3c5b5882f (diff) | |
download | cpython-d5b635f1969fdd609f0aff5669c9ec30e61be62e.zip cpython-d5b635f1969fdd609f0aff5669c9ec30e61be62e.tar.gz cpython-d5b635f1969fdd609f0aff5669c9ec30e61be62e.tar.bz2 |
Make Py3k warnings consistent w.r.t. punctuation; also respect the
EOL 80 limit and supply more alternatives in warning messages.
Diffstat (limited to 'Python/ast.c')
-rw-r--r-- | Python/ast.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ast.c b/Python/ast.c index 8a317b8..1fc2324 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -1363,7 +1363,7 @@ ast_for_atom(struct compiling *c, const node *n) expr_ty expression; if (Py_Py3kWarningFlag) { if (PyErr_WarnExplicit(PyExc_DeprecationWarning, - "backquote not supported in 3.x", + "backquote not supported in 3.x; use repr()", c->c_filename, LINENO(n), NULL, NULL)) { return NULL; |