summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_socket.py
Commit message (Expand)AuthorAgeFilesLines
* [3.11] bpo-37013: Fix the error handling in socket.if_indextoname() (GH-13503...Miss Islington (bot)2023-12-251-0/+13
* [3.11] bpo-35191: Fix unexpected integer truncation in socket.setblocking() (...Alexey Izbyshev2023-12-011-2/+2
* [3.11] gh-76106: Remove the cleanup lock in test_socket (GH-110539) (GH-110700)Miss Islington (bot)2023-10-111-24/+2
* [3.11] gh-110167: Fix test_socket deadlock in doCleanups() (GH-110416) (#110424)Miss Islington (bot)2023-10-051-5/+7
* [3.11] gh-110391: socket NetworkConnectionAttributesTest always declare cli (...Miss Islington (bot)2023-10-051-1/+3
* [3.11] gh-109396: Fix test_socket.test_hmac_sha1() in FIPS mode (GH-109423) (...Miss Islington (bot)2023-09-141-3/+7
* [3.11] gh-109015: Add test.support.socket_helper.tcp_blackhole() (#109016) (#...Victor Stinner2023-09-071-0/+2
* gh-100374: Fixed a bug in socket.getfqdn() (gh-100375)Miss Islington (bot)2022-12-211-0/+4
* gh-95243: Mitigate the race condition in testSockName (GH-96173)Miss Islington (bot)2022-08-251-2/+13
* [3.11] gh-95174: WASI: skip missing sockets functions (GH-95179) (GH-95308)Christian Heimes2022-07-311-0/+13
* gh-94821: Fix autobind of empty unix domain address (GH-94826)Miss Islington (bot)2022-07-171-0/+19
* Remove the execution bit to some socket-related files. (GH-93368)Miss Islington (bot)2022-06-011-0/+0
* bpo-45046: Support context managers in unittest (GH-28045)Miss Islington (bot)2022-05-081-3/+1
* gh-74166: Add option to get all errors from socket.create_connection (GH-91586)Irit Katriel2022-04-181-0/+18
* bpo-40280: Skip socket, fork, subprocess tests on Emscripten (GH-31986)Christian Heimes2022-03-221-0/+2
* bpo-40066: [Enum] fix tests (GH-30643)Ethan Furman2022-01-171-8/+8
* bpo-40066: [Enum] skip failing doc test (GH-30637)Kumar Aditya2022-01-171-4/+8
* Revert "bpo-40066: [Enum] update str() and format() output (GH-30582)" (GH-3...Victor Stinner2022-01-171-8/+4
* bpo-40066: [Enum] update str() and format() output (GH-30582)Ethan Furman2022-01-161-4/+8
* Add a comment about how to fix bogus test_host_resolution_bad_address failure...Barry Warsaw2021-10-201-2/+4
* bpo-45187: Fix dangling threads in test_socket.CreateServerFunctionalTest (GH...Serhiy Storchaka2021-09-171-9/+3
* bpo-45212: Add a comment for time.sleep() in tests (GH-28414)Serhiy Storchaka2021-09-171-0/+1
* bpo-45187: Collect test_socket tests using unittest (GH-28317)Serhiy Storchaka2021-09-171-79/+5
* bpo-45212: Fix dangling threads in skipped tests in test_socket (GH-28361)Serhiy Storchaka2021-09-161-11/+8
* bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)Serhiy Storchaka2021-08-291-0/+1
* bpo-34932: Add socket.TCP_KEEPALIVE for macOS (GH-25079)Shane Harvey2021-07-141-0/+7
* bpo-40297: Fix test_socket.CANTest.testSendFrame (GH-19548)karl ding2021-05-041-2/+1
* bpo-43651: PEP 597: Fix `socket.makefile()` (GH-25645)Inada Naoki2021-04-271-3/+4
* bpo-38659: [Enum] add _simple_enum decorator (GH-25497)Ethan Furman2021-04-211-0/+35
* Revert "bpo-38659: [Enum] add _simple_enum decorator (GH-25285)" (GH-25476)Ethan Furman2021-04-201-35/+0
* bpo-38659: [Enum] add _simple_enum decorator (GH-25285)Ethan Furman2021-04-201-0/+35
* bpo-40066: Enum: modify `repr()` and `str()` (GH-22392)Ethan Furman2021-03-311-4/+4
* bpo-42393: Raise OverflowError iso. DeprecationWarning on overflow in socket....Erlend Egeberg Aasland2020-12-311-6/+5
* skip test_getaddrinfo_ipv6_scopeid_symbolic and test_getnameinfo_ipv6_scopeid...pxinwr2020-11-281-0/+2
* bpo-42413: socket.timeout is now an alias of TimeoutError (GH-23413)Christian Heimes2020-11-201-17/+19
* bpo-42172: Correct typo for test_socket.py (GH-23013)Akashkumar D Khunt2020-10-301-3/+3
* bpo-40275: Use new test.support helper submodules in tests (GH-21317)Hai Shi2020-07-061-28/+29
* bpo-40275: Adding threading_helper submodule in test.support (GH-20263)Hai Shi2020-05-271-3/+4
* bpo-37999: No longer use __int__ in implicit integer conversions. (GH-15636)Serhiy Storchaka2020-05-261-4/+2
* bpo-35569: Expose RFC 3542 IPv6 socket options on macOS (GH-19526)Erlend Egeberg Aasland2020-05-171-0/+31
* bpo-40291: Add support for CAN_J1939 sockets (GH-19538)karl ding2020-04-291-0/+74
* bpo-40275: Move transient_internet from test.support to socket_helper (GH-19711)Serhiy Storchaka2020-04-291-1/+1
* bpo-40275: Avoid importing socket in test.support (GH-19603)Serhiy Storchaka2020-04-251-57/+58
* Handle when IOCTL_VM_SOCKETS_GET_LOCAL_CID does not exist in "socket" (GH-19270)Pablo Galindo2020-04-011-0/+2
* bpo-38614: Use support timeout constants (GH-17572)HEADmasterVictor Stinner2019-12-111-6/+14
* bpo-38614: Add timeout constants to test.support (GH-16964)Victor Stinner2019-10-301-9/+7
* closes bpo-37405: Make socket.getsockname() always return a tuple for AF_CAN....bggardner2019-09-121-1/+3
* bpo-28724: Add methods send_fds and recv_fds to the socket module (GH-12889)Joannah Nanjekye2019-09-111-1/+44
* bpo-15999: Always pass bool instead of int to socket.setblocking(). (GH-15621)Serhiy Storchaka2019-09-011-5/+5
* bpo-36590: Add Bluetooth RFCOMM and support for Windows. (GH-12767)Greg Bowser2019-08-021-0/+55