diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-05-24 15:40:09 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-05-24 15:40:09 (GMT) |
commit | d49e375eedf717c048fe7f803ee347a1572cc968 (patch) | |
tree | d2642c53592bb1785ad5755a52cc655d15ee8a74 /Misc | |
parent | 4fe3858991581e22e365e51b5770547a0da33e4b (diff) | |
download | cpython-d49e375eedf717c048fe7f803ee347a1572cc968.zip cpython-d49e375eedf717c048fe7f803ee347a1572cc968.tar.gz cpython-d49e375eedf717c048fe7f803ee347a1572cc968.tar.bz2 |
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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -302,6 +302,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 #1424152: Fix for httplib, urllib2 to support SSL while working through proxy. Original patch by Christopher Li, changes made by Senthil Kumaran. |