summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2009-05-23 16:02:33 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2009-05-23 16:02:33 (GMT)
commitc3ee166427b5b9bdcc6f466ab4794ae754217d72 (patch)
treec180196a782c2a691a3be6144698c4e9884ae30e /Misc
parent41669caebc62a63016d01c84f3bfd2eb219060b2 (diff)
downloadcpython-c3ee166427b5b9bdcc6f466ab4794ae754217d72.zip
cpython-c3ee166427b5b9bdcc6f466ab4794ae754217d72.tar.gz
cpython-c3ee166427b5b9bdcc6f466ab4794ae754217d72.tar.bz2
Merged revisions 72852 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72852 | antoine.pitrou | 2009-05-23 17:37:45 +0200 (sam., 23 mai 2009) | 5 lines 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. ........
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 9d190ff..6d57693 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,10 @@ Core and Builtins
Library
-------
+- 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.
+
- Issue #4066: smtplib.SMTP_SSL._get_socket now correctly returns the socket.
Patch by Farhan Ahmad, test by Marcin Bachry.