Author: guido.van.rossum
Date: Thu Aug 30 02:10:46 2007
New Revision: 57690

Modified:
   python/branches/py3k/Parser/tokenizer.c
Log:
Fix an outdated URL in a SyntaxError message.


Modified: python/branches/py3k/Parser/tokenizer.c
==============================================================================
--- python/branches/py3k/Parser/tokenizer.c     (original)
+++ python/branches/py3k/Parser/tokenizer.c     Thu Aug 30 02:10:46 2007
@@ -538,7 +538,7 @@
                        "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);
_______________________________________________
Python-3000-checkins mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000-checkins

Reply via email to