summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-05-24 15:41:43 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-05-24 15:41:43 (GMT)
commit6c3064beed67b4cd5dc23264ed9520eaeec4cb6d (patch)
tree99c43ef5c8964832ca6b48d4156e4a29219f3489 /Misc
parent7a458e8f64720991f7bf1cb0fee115aa14c5a3ee (diff)
downloadcpython-6c3064beed67b4cd5dc23264ed9520eaeec4cb6d.zip
cpython-6c3064beed67b4cd5dc23264ed9520eaeec4cb6d.tar.gz
cpython-6c3064beed67b4cd5dc23264ed9520eaeec4cb6d.tar.bz2
Merged revisions 72887 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72887 | antoine.pitrou | 2009-05-24 17:40:09 +0200 (dim., 24 mai 2009) | 6 lines Issue #1309352: fcntl now converts its third arguments to a C `long` rather than an int, which makes some operations possible under 64-bit Linux (e.g. DN_MULTISHOT with F_NOTIFY). ........
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 6fdbd0b..6264e58 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -50,6 +50,10 @@ Core and Builtins
Library
-------
+- Issue #1309352: fcntl now converts its third arguments to a C `long` rather
+ than an int, which makes some operations possible under 64-bit Linux (e.g.
+ DN_MULTISHOT with F_NOTIFY).
+
- Issue #1983: Fix functions taking or returning a process identifier to use
the dedicated C type ``pid_t`` instead of a C ``int``. Some platforms have
a process identifier type wider than the standard C integer type.