Kaydet (Commit) 95b744ce authored tarafından Martin v. Löwis's avatar Martin v. Löwis

Patch #1544279: Improve thread-safety of the socket module by moving

the sock_addr_t storage out of the socket object.
üst 1c305dbf
......@@ -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.
......
This diff is collapsed.
......@@ -114,7 +114,6 @@ typedef struct {
int sock_family; /* Address family, e.g., AF_INET */
int sock_type; /* Socket type, e.g., SOCK_STREAM */
int sock_proto; /* Protocol type, usually 0 */
sock_addr_t sock_addr; /* Socket address */
PyObject *(*errorhandler)(void); /* Error handler; checks
errno, returns NULL and
sets a Python exception */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment