summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2010-09-07 16:30:09 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2010-09-07 16:30:09 (GMT)
commit5e38aae91bcc1ae0560debb9866df17e7da20ab1 (patch)
treee2f7c76e4df9baa236dfc2eeb7025d14f73133d4 /Misc
parent7f7561ebfc10089d7ee651487835d6229d5a97e2 (diff)
downloadcpython-5e38aae91bcc1ae0560debb9866df17e7da20ab1.zip
cpython-5e38aae91bcc1ae0560debb9866df17e7da20ab1.tar.gz
cpython-5e38aae91bcc1ae0560debb9866df17e7da20ab1.tar.bz2
Issue #9758: When fcntl.ioctl() was called with mutable_flag set to True,
and the passed buffer was exactly 1024 bytes long, the buffer wouldn't be updated back after the system call. Original patch by Brian Brazil.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 06a3f53..81df803 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -13,6 +13,10 @@ Core and Builtins
Library
-------
+- Issue #9758: When fcntl.ioctl() was called with mutable_flag set to True,
+ and the passed buffer was exactly 1024 bytes long, the buffer wouldn't
+ be updated back after the system call. Original patch by Brian Brazil.
+
- Updates to the random module:
* Document which parts of the module are guaranteed to stay the same