From: Walter Dörwald Date: Wed, 19 Feb 2003 16:34:11 +0000 (+0000) Subject: Add a note about the recent PEP 293 changes. X-Git-Tag: v2.3c1~1759 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2ffec02b48e3cfb5209eb79eff80d0fb5ca8df38;p=thirdparty%2FPython%2Fcpython.git Add a note about the recent PEP 293 changes. --- diff --git a/Misc/NEWS b/Misc/NEWS index 2b12d6cb7325..ecf4fb810f16 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -12,6 +12,10 @@ What's New in Python 2.3 alpha 2? Core and builtins ----------------- +- Negative positions returned from PEP 293 error callbacks are now + treated as being relative to the end of the input string. Positions + that are out of bounds raise an IndexError. + - sys.path[0] (the directory from which the script is loaded) is now turned into an absolute pathname, unless it is the empty string. (SF patch #664376.)