summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWalter Dörwald <walter@livinglogic.de>2003-02-19 16:34:11 (GMT)
committerWalter Dörwald <walter@livinglogic.de>2003-02-19 16:34:11 (GMT)
commit2ffec02b48e3cfb5209eb79eff80d0fb5ca8df38 (patch)
treea14bb63c7135b632721865821bc6e3d9bbc7d817
parentcade71387eeb754e0b8583fbd5d086a4ff5c4f12 (diff)
downloadcpython-2ffec02b48e3cfb5209eb79eff80d0fb5ca8df38.zip
cpython-2ffec02b48e3cfb5209eb79eff80d0fb5ca8df38.tar.gz
cpython-2ffec02b48e3cfb5209eb79eff80d0fb5ca8df38.tar.bz2
Add a note about the recent PEP 293 changes.
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2b12d6c..ecf4fb8 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.)