summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_socket.py
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-119461: Restore the testSocket VSOCK skipUnless removed by PR GH-11...Miss Islington (bot)2025-02-021-0/+2
* [3.12] gh-128116: Skip test_socket VSOCK testStream() on PermissionError (GH-...Miss Islington (bot)2024-12-201-1/+4
* [3.12] gh-126876: Fix socket internal_select() for large timeout (GH-126968) ...Miss Islington (bot)2024-12-031-0/+30
* [3.12] Skip test in test_socket.py if `sys.getrefcount` isn't available (GH-1...Miss Islington (bot)2024-11-101-0/+2
* [3.12] Fix typos (#123775) (#123867)Victor Stinner2024-09-091-1/+1
* [3.12] gh-122133: Rework pure Python socketpair tests to avoid use of importl...Miss Islington (bot)2024-07-311-14/+6
* [3.12] gh-122133: Authenticate socket connection for `socket.socketpair()` fa...Miss Islington (bot)2024-07-291-3/+125
* [3.12] [3.13] gh-119461: Fix ThreadedVSOCKSocketStreamTest (GH-119465) (GH-11...Miss Islington (bot)2024-05-231-4/+6
* [3.12] gh-101384: Add socket timeout to ThreadedVSOCKSocketStreamTest and ski...Miss Islington (bot)2024-02-171-0/+3
* [3.12] bpo-37013: Fix the error handling in socket.if_indextoname() (GH-13503...Miss Islington (bot)2023-12-251-0/+13
* [3.12] gh-76106: Remove the cleanup lock in test_socket (GH-110539) (GH-110699)Miss Islington (bot)2023-10-111-24/+2
* [3.12] gh-110167: Fix test_socket deadlock in doCleanups() (GH-110416) (#110423)Miss Islington (bot)2023-10-051-5/+7
* [3.12] gh-110391: socket NetworkConnectionAttributesTest always declare cli (...Miss Islington (bot)2023-10-051-1/+3
* [3.12] gh-109396: Fix test_socket.test_hmac_sha1() in FIPS mode (GH-109423) (...Miss Islington (bot)2023-09-141-3/+7
* [3.12] gh-109015: Add test.support.socket_helper.tcp_blackhole() (GH-109016) ...Miss Islington (bot)2023-09-081-0/+2
* gh-92658: Fix typo in docs and tests for `HV_GUID_PARENT` (GH-105267)Miss Islington (bot)2023-06-061-1/+1
* gh-74895: adjust tests to work on Solaris (#104326)Jakub KulĂ­k2023-05-091-6/+6
* gh-103092: Isolate `socket` module (#103094)Erlend E. Aasland2023-04-091-0/+7
* gh-102943: Stop checking localized error text in socket tests on Windows (GH-...AN Long2023-03-231-2/+1
* gh-102799: remove unnecessary calls to sys.exc_info() in tests (#102800)Irit Katriel2023-03-181-2/+2
* gh-74895: getaddrinfo no longer raises OverflowError (#2435)Radek Smejkal2023-02-141-0/+48
* gh-100374: Fixed a bug in socket.getfqdn() (gh-100375)Dominic Socular2022-12-211-0/+4
* gh-95243: Mitigate the race condition in testSockName (#96173)Ross Burton2022-08-251-2/+13
* gh-95174: WASI: skip missing sockets functions (GH-95179)Christian Heimes2022-07-271-0/+13
* gh-94821: Fix autobind of empty unix domain address (GH-94826)Nir Soffer2022-07-151-0/+19
* gh-94068: Remove HVSOCKET_CONTAINER_PASSTHRU constant because it has been rem...Steve Dower2022-06-211-1/+0
* gh-93852: Add test.support.create_unix_domain_name() (#93914)Victor Stinner2022-06-171-38/+34
* Remove the execution bit to some socket-related files. (#93368)Ezio Melotti2022-06-011-0/+0
* gh-92658: Add Hyper-V socket support (GH-92755)Jordan Borean2022-05-241-0/+68
* bpo-45046: Support context managers in unittest (GH-28045)Serhiy Storchaka2022-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