summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2006-12-03 11:24:00 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2006-12-03 11:24:00 (GMT)
commit95b744cea98be482c44fed4ff3a3e48bf910410c (patch)
tree06396fa14478c2237bec962bfd539a27b830b555 /Misc
parent1c305dbf978021b4609b43338fc037b36cc1ed38 (diff)
downloadcpython-95b744cea98be482c44fed4ff3a3e48bf910410c.zip
cpython-95b744cea98be482c44fed4ff3a3e48bf910410c.tar.gz
cpython-95b744cea98be482c44fed4ff3a3e48bf910410c.tar.bz2
Patch #1544279: Improve thread-safety of the socket module by moving
the sock_addr_t storage out of the socket object.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 2e5cada..f77b7ae 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -70,6 +70,9 @@ Core and builtins
Extension Modules
-----------------
+- Patch #1544279: Improve thread-safety of the socket module by moving
+ the sock_addr_t storage out of the socket object.
+
- Bug #1563807: _ctypes built on AIX fails with ld ffi error.
- Bug #1598620: A ctypes Structure cannot contain itself.