summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorFacundo Batista <facundobatista@gmail.com>2008-02-17 18:59:29 (GMT)
committerFacundo Batista <facundobatista@gmail.com>2008-02-17 18:59:29 (GMT)
commite139688d34cc12b23d3a310f10d4f440f75f7d08 (patch)
tree490a12e1246ba8a0aea3b92b9bd4fc8633965480 /Misc
parentf88a077f69892c80e1ecf0ac8c0ba3d981dc4ff8 (diff)
downloadcpython-e139688d34cc12b23d3a310f10d4f440f75f7d08.zip
cpython-e139688d34cc12b23d3a310f10d4f440f75f7d08.tar.gz
cpython-e139688d34cc12b23d3a310f10d4f440f75f7d08.tar.bz2
Issue 2112. mmap does not raises EnvironmentError no more, but
a subclass of it. Thanks John Lenton.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 377f1ed..a722195 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1149,6 +1149,9 @@ Library
Extension Modules
-----------------
+- #2112: mmap.error is now a subclass of EnvironmentError and not a
+ direct EnvironmentError
+
- Bug #2111: mmap segfaults when trying to write a block opened with PROT_READ
- #2063: correct order of utime and stime in os.times() result on Windows.