summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-10-16 00:43:13 +0000
committerR. David Murray <rdmurray@bitdance.com>2010-10-16 00:43:13 +0000
commit91a4c859d1846684fd320d05b106889de2173492 (patch)
tree9b0221e6b4fb3b3fddd3bde30dab61809577ee81 /Misc
parentc46ce0c5c55bebbee38236d09cb9f1d14885bb2e (diff)
downloadcpython-91a4c859d1846684fd320d05b106889de2173492.tar.gz
Merged revisions 85554 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85554 | r.david.murray | 2010-10-15 19:12:57 -0400 (Fri, 15 Oct 2010) | 4 lines #9862: On AIX PIPE_BUF is broken. Make it 512. Patch by Sébastien Sablé. ........
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 d7f6d1f5bd..d8f2f1b3d6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 2.7.1?
Core and Builtins
-----------------
+- Issue #9862: Compensate for broken PIPE_BUF in AIX by hard coding
+ its value as the default 512 when compiling on AIX.
+
- Issue #10068: Global objects which have reference cycles with their module's
dict are now cleared again. This causes issue #7140 to appear again.