summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2007-01-14 17:03:32 (GMT)
committerGuido van Rossum <guido@python.org>2007-01-14 17:03:32 (GMT)
commitbb2cc698c1dd69ad57450bb48d64f2b8aaae7bb7 (patch)
tree7a5adf061a1281e0bc2add6ac069a779274a6d26 /Misc
parent8ef1cf30b7a3427c42fe803547c6f7f33187783f (diff)
downloadcpython-bb2cc698c1dd69ad57450bb48d64f2b8aaae7bb7.zip
cpython-bb2cc698c1dd69ad57450bb48d64f2b8aaae7bb7.tar.gz
cpython-bb2cc698c1dd69ad57450bb48d64f2b8aaae7bb7.tar.bz2
Patch #1635058 by Mark Roberts: ensure that htonl and friends never accept or
return negative numbers, per the underlying C implementation.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index b198114..7ea63cc 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -521,6 +521,7 @@ Armin Rigo
Nicholas Riley
Jean-Claude Rimbault
Anthony Roach
+Mark Roberts
Andy Robinson
Jim Robinson
Kevin Rodgers
diff --git a/Misc/NEWS b/Misc/NEWS
index 754ceae..37a1ab6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -301,6 +301,9 @@ Library
Extension Modules
-----------------
+- Patch #1635058: ensure that htonl and friends never accept or
+ return negative numbers, per the underlying C implementation.
+
- Patch #1544279: Improve thread-safety of the socket module by moving
the sock_addr_t storage out of the socket object.