diff options
author | Segev Finer <segev208@gmail.com> | 2017-06-28 20:51:00 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2017-06-28 20:51:00 (GMT) |
commit | 9f3bdcb643623e07497af2fc35f0496c2302f1be (patch) | |
tree | bcb63c593b5e91e5f5e669a2d8b331348f082c2e /Misc | |
parent | 5b8f972e093157cc55185841db9ad33fa332a641 (diff) | |
download | cpython-9f3bdcb643623e07497af2fc35f0496c2302f1be.zip cpython-9f3bdcb643623e07497af2fc35f0496c2302f1be.tar.gz cpython-9f3bdcb643623e07497af2fc35f0496c2302f1be.tar.bz2 |
bpo-23451: Fix socket deprecation warnings in socketmodule.c (#2318)
* bpo-23451: Fix WSASocket and WSADuplicateSocket deprecation warnings
* bpo-23451: Add backwards compatibility note about socket share/fromshare
* bpo-23451: Fixed `WSAAddressToString`/`WSAStringToAddress` deprecation warnings
* bpo-23451: Use `inet_pton`/`inet_ntop` instead of `WSAAddressToString`/`WSAStringToAddress`
* bpo-23451: Move `HAVE_INET_PTON` from _socket.vcxproj to pyconfig.h
* bpo-23451: Add SUPPRESS_DEPRECATED_CALL to socketmodule.c
* bpo-23451: Add a NEWS.d entry
* bpo-23451: Corrected NEWS.d entry
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Windows/2017-06-27-07-04-06.bpo-23451.bl_QOB.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Windows/2017-06-27-07-04-06.bpo-23451.bl_QOB.rst b/Misc/NEWS.d/next/Windows/2017-06-27-07-04-06.bpo-23451.bl_QOB.rst new file mode 100644 index 0000000..bad4e22 --- /dev/null +++ b/Misc/NEWS.d/next/Windows/2017-06-27-07-04-06.bpo-23451.bl_QOB.rst @@ -0,0 +1 @@ +Fix socket deprecation warnings in socketmodule.c. Patch by Segev Finer. |