diff options
author | Michael W. Hudson <mwh@python.net> | 2005-07-27 20:24:40 (GMT) |
---|---|---|
committer | Michael W. Hudson <mwh@python.net> | 2005-07-27 20:24:40 (GMT) |
commit | 8137bea4ca369dfcd763ea51c678319a9d1da874 (patch) | |
tree | e53a5d0cc18527e2b110aa41e19dc32819b7618f /Misc/NEWS | |
parent | e452c7af77b2fe6661a8a511b3b51fa7212583d9 (diff) | |
download | cpython-8137bea4ca369dfcd763ea51c678319a9d1da874.zip cpython-8137bea4ca369dfcd763ea51c678319a9d1da874.tar.gz cpython-8137bea4ca369dfcd763ea51c678319a9d1da874.tar.bz2 |
This is barry-scott's patch:
[ 1231069 ] ioctl has problem with -ive request codes
by using the 'I' not the 'i' format code to PyArg_ParseTuple().
Backport candidate? Maybe...
Diffstat (limited to 'Misc/NEWS')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -117,6 +117,10 @@ Core and builtins Extension Modules ----------------- +- Patch #1231069: The fcntl.ioctl function now uses the 'I' code for + the request code argument, which results in more C-like behaviour + for large or negative values. + - Bug #1234979: For the argument of thread.Lock.acquire, the Windows implemented treated all integer values except 1 as false. |