summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_socket.py
Commit message (Expand)AuthorAgeFilesLines
* [3.9] gh-119461: Fix ThreadedVSOCKSocketStreamTest (GH-129171) (GH-129440) (#...Miss Islington (bot)2025-02-191-5/+12
* [3.9] gh-109396: Fix test_socket.test_hmac_sha1() in FIPS mode (GH-109423) (G...Miss Islington (bot)2024-11-041-3/+7
* [3.9] gh-122133: Rework pure Python socketpair tests to avoid use of importli...Miss Islington (bot)2024-08-021-14/+6
* [3.9] gh-122133: Authenticate socket connection for `socket.socketpair()` fal...Miss Islington (bot)2024-07-301-3/+125
* [3.9] bpo-37013: Fix the error handling in socket.if_indextoname() (GH-13503)...Miss Islington (bot)2024-01-171-0/+13
* gh-94821: Fix autobind of empty unix domain address (GH-94826) (GH-94875)Miss Islington (bot)2022-07-261-0/+19
* bpo-45187: Fix dangling threads in test_socket.CreateServerFunctionalTest (GH...Miss Islington (bot)2021-09-171-9/+3
* [3.9] bpo-45187: Collect test_socket tests using unittest (GH-28317) (GH-28413)Łukasz Langa2021-09-171-78/+5
* [3.9] bpo-45212: Fix dangling threads in skipped tests in test_socket (GH-283...Serhiy Storchaka2021-09-171-11/+8
* [3.9] bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005...Serhiy Storchaka2021-08-291-0/+1
* bpo-40297: Fix test_socket.CANTest.testSendFrame (GH-19548)Miss Islington (bot)2021-05-041-2/+1
* 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)masterVictor 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
* bpo-37085: Expose SocketCAN bcm_msg_head flags (#13646)karl ding2019-07-311-0/+13
* bpo-37553: SendfileUsingSendTest tests timeout too short for Windows ARM32 (G...Paul Monson2019-07-141-1/+2
* bpo-37199: Fix test failures when IPv6 is unavailable or disabled (#14480)Zackery Spytz2019-06-301-1/+8
* bpo-37345: Add formal UDPLITE support (GH-14258)Gabe Appleton2019-06-241-0/+183
* bpo-37007: Implement socket.if_nametoindex(), if_indextoname() and if_nameind...Zackery Spytz2019-05-291-13/+11
* bpo-36341: Fix tests calling bind() on AF_UNIX sockets (GH-12399)xdegaye2019-05-031-2/+7
* bpo-36629: Add support.get_socket_conn_refused_errs() (GH-12834)Victor Stinner2019-04-151-8/+1
* bpo-35934: Add socket.create_server() utility function (GH-11784)Giampaolo Rodola2019-04-081-1/+125
* bpo-29515: add missing socket.IPPROTO_* constants on Windows (GH-12183)Giampaolo Rodola2019-03-281-0/+19
* bpo-22831: Use "with" to avoid possible fd leaks in tests (part 1). (GH-10928)Serhiy Storchaka2019-03-051-24/+19
* bpo-36123: Fix test_socket.testWithTimeoutTriggeredSend() race condition (GH-...Joannah Nanjekye2019-02-261-2/+3
* Make sure file object is close if socket.create_connection fails (GH-11334)Pablo Galindo2018-12-291-5/+4
* bpo-11192: Skip unsupported cases in test_socket on AIX (GH-8954)Michael Felt2018-12-261-9/+15
* bpo-35415: validate fileno argument to socket.socket (GH-10917)Dima Tisnek2018-12-171-5/+44
* bpo-35050: AF_ALG length check off-by-one error (GH-10058)Christian Heimes2018-12-101-0/+18
* bpo-35347: Cleanup test_socket.NonBlockingTCPTests (GH-10818)Victor Stinner2018-11-301-89/+74
* bpo-35347: Fix test_socket.NonBlockingTCPTests (GH-10791)Victor Stinner2018-11-301-25/+39
* Fix tests in test_socket to use correctly CMSG_LEN (GH-9594)Pablo Galindo2018-09-271-2/+3
* bpo-31425: Expose AF_QIPCRTR in socket module (GH-3706)Bjorn Andersson2018-09-261-0/+41
* bpo-33937: Catch ENOMEM error in test_socket (#9557)Victor Stinner2018-09-251-2/+13
* bpo-34587, test_socket: remove RDSTest.testCongestion() (GH-9277)Victor Stinner2018-09-171-27/+0
* Fixed several assertTrue() that were intended to be assertEqual(). (GH-8191)Sergey Fedoseev2018-07-091-1/+1
* Revert "bpo-33671: Add support.MS_WINDOWS and support.MACOS (GH-7800)" (GH-7919)Victor Stinner2018-06-261-1/+1
* bpo-33671: Add support.MS_WINDOWS and support.MACOS (GH-7800)Victor Stinner2018-06-221-1/+1
* Provide a little better debug output (#6940)Barry Warsaw2018-05-171-1/+1
* Spelling fixes to docs, docstrings, and comments (GH-6374)Ville Skyttä2018-04-201-1/+1
* bpo-32394: Remove some TCP options on old version Windows. (GH-5523)animalize2018-02-261-0/+22
* bpo-32221: makeipaddr(): remove interface part + speedup (GH-5449) (#5449)Коренберг Марк2018-02-121-0/+66