summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-05-24 15:46:13 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-05-24 15:46:13 (GMT)
commit61f77b57fdfcc8a630667dda3cbb8c5ac502f438 (patch)
treed05b378ce8aa5c1ad19daa86db92a9c9245db8a9 /Misc
parent1ef7f6e1834cf8d5bc462f3f5845e294a7d54220 (diff)
downloadcpython-61f77b57fdfcc8a630667dda3cbb8c5ac502f438.zip
cpython-61f77b57fdfcc8a630667dda3cbb8c5ac502f438.tar.gz
cpython-61f77b57fdfcc8a630667dda3cbb8c5ac502f438.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 378868e..110efbe 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,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 #5761: Add the name of the underlying file to the repr() of various
IO objects.