[Python-checkins] cpython (2.7): Issue #21789: fix broken link (reported by Jan Varho)

ned.deily python-checkins at python.org
Tue Jun 17 21:25:31 CEST 2014


http://hg.python.org/cpython/rev/f80199b009ef
changeset:   91248:f80199b009ef
branch:      2.7
parent:      91245:23c77732a6a0
user:        Ned Deily <nad at acm.org>
date:        Tue Jun 17 12:24:53 2014 -0700
summary:
  Issue #21789: fix broken link (reported by Jan Varho)

files:
  Parser/tokenizer.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c
--- a/Parser/tokenizer.c
+++ b/Parser/tokenizer.c
@@ -534,7 +534,7 @@
             "Non-ASCII character '\\x%.2x' "
             "in file %.200s on line %i, "
             "but no encoding declared; "
-            "see http://www.python.org/peps/pep-0263.html for details",
+            "see http://python.org/dev/peps/pep-0263/ for details",
             badchar, tok->filename, tok->lineno + 1);
         PyErr_SetString(PyExc_SyntaxError, buf);
         return error_ret(tok);

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list