summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-01-19 15:26:37 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-01-19 15:26:37 (GMT)
commit710e96651d5fb2936a486a801801ddf24ab614d1 (patch)
treedced7f39448b8de3483ab4a891e627c11ce60456 /Misc
parent566facd39b90595b1b7ab61a26c77e426ac22c73 (diff)
downloadcpython-710e96651d5fb2936a486a801801ddf24ab614d1.zip
cpython-710e96651d5fb2936a486a801801ddf24ab614d1.tar.gz
cpython-710e96651d5fb2936a486a801801ddf24ab614d1.tar.bz2
Merged revisions 88111 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88111 | antoine.pitrou | 2011-01-19 16:21:35 +0100 (mer., 19 janv. 2011) | 4 lines Issue #10898: Allow compiling the posix module when the C library defines a symbol named FSTAT. ........
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 abc496b..ba9a88d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -37,6 +37,9 @@ Core and Builtins
Library
-------
+- Issue #10898: Allow compiling the posix module when the C library defines
+ a symbol named FSTAT.
+
- Issue #10916: mmap should not segfault when a file is mapped using 0 as
length and a non-zero offset, and an attempt to read past the end of file
is made (IndexError is raised instead). Patch by Ross Lagerwall.