summaryrefslogtreecommitdiff
path: root/Parser
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-08-30 00:10:46 +0000
committerGuido van Rossum <guido@python.org>2007-08-30 00:10:46 +0000
commit3fa3889bf79c4bc4a7a10d046cf01d4b21b4d838 (patch)
treeb9f42e9916ddf4a5f71b339f638d0f7df8d6f58c /Parser
parentf2674d0174098438fd6476843671aafed235afb8 (diff)
downloadcpython-3fa3889bf79c4bc4a7a10d046cf01d4b21b4d838.tar.gz
Fix an outdated URL in a SyntaxError message.
Diffstat (limited to 'Parser')
-rw-r--r--Parser/tokenizer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c
index d86615faf8..776183d805 100644
--- a/Parser/tokenizer.c
+++ b/Parser/tokenizer.c
@@ -538,7 +538,7 @@ decoding_fgets(char *s, int size, struct tok_state *tok)
"Non-UTF-8 code starting with '\\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);