summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-09-30 10:20:05 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-09-30 10:20:05 (GMT)
commitd6b176905d073ae6c109fa32bb16ec55a6e68c17 (patch)
tree77ea72a6b01bceb9b64df8df9de6ca230a560e9f /Misc
parent43030ee78041455566e7f78d6d5135eaa3455294 (diff)
downloadcpython-d6b176905d073ae6c109fa32bb16ec55a6e68c17.zip
cpython-d6b176905d073ae6c109fa32bb16ec55a6e68c17.tar.gz
cpython-d6b176905d073ae6c109fa32bb16ec55a6e68c17.tar.bz2
Issue #22396: On 32-bit AIX platform, don't expose os.posix_fadvise() nor
os.posix_fallocate() because their prototypes in system headers are wrong.
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 a1fc5d0..ba25316 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -19,6 +19,9 @@ Core and Builtins
Library
-------
+- Issue #22396: On 32-bit AIX platform, don't expose os.posix_fadvise() nor
+ os.posix_fallocate() because their prototypes in system headers are wrong.
+
- Issue #22517: When a io.BufferedRWPair object is deallocated, clear its
weakrefs.