Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | gh-91227: Ignore ERROR_PORT_UNREACHABLE in proactor recvfrom() (#32011) | Erik Soma | 2024-03-23 | 1 | -0/+81 |
| | |||||
* | gh-109015: Add test.support.socket_helper.tcp_blackhole() (#109016) | Victor Stinner | 2023-09-06 | 1 | -0/+4 |
| | | | | Skip test_asyncio, test_imaplib and test_socket tests if FreeBSD TCP blackhole is enabled (net.inet.tcp.blackhole=2). | ||||
* | gh-84623: Remove unused imports in tests (#93772) | Victor Stinner | 2022-06-13 | 1 | -1/+1 |
| | |||||
* | bpo-46805: Add low level UDP socket functions to asyncio (GH-31455) | Alex Grönholm | 2022-03-13 | 1 | -1/+74 |
| | |||||
* | Fix warning: asyncio.events._event_loop_policy was modified by test_asyncio ↵ | Andrew Svetlov | 2022-02-10 | 1 | -0/+4 |
| | | | | (GH-31253) | ||||
* | bpo-46425: fix direct invocation of `asyncio` tests (#30725) | Nikita Sobolev | 2022-01-22 | 1 | -1/+4 |
| | |||||
* | bpo-23819: Get rid of assert statements in test_asyncio (GH-30212) | Serhiy Storchaka | 2021-12-20 | 1 | -5/+9 |
| | | | | | | To keep checks even if run tests with optimized Python. Either use special assertion methods like assertEqual() or raise an AssertionError explicitly. | ||||
* | bpo-41317: Remove reader on cancellation in asyncio.loop.sock_accept() (#21595) | Alex Grönholm | 2020-07-23 | 1 | -0/+19 |
| | |||||
* | bpo-30064: Fix slow asyncio sock test (GH-20868) | Fantix King | 2020-06-14 | 1 | -14/+20 |
| | | | | | | | | | | | | | Using a log2n way to fill a much smaller buffer, and receiving in a cleaner way with EOF. The failing test was reproducible using the following command thanks to @aeros : ```bash ./python -m test test_asyncio.test_sock_lowlevel --match test_sock_client_racing -j100 -F -v ``` According to test results, we may still need to bump the timeout: https://github.com/python/cpython/blob/5aad027db9618f22f6fa2274e05dd50f928d2ed7/Lib/test/test_asyncio/test_sock_lowlevel.py#L256-L257 | ||||
* | bpo-30064: Properly skip unstable loop.sock_connect() racing test (GH-20494) | Fantix King | 2020-05-28 | 1 | -20/+26 |
| | |||||
* | bpo-30064: Fix unstable asyncio "racing" socket tests (GH-20485) | Victor Stinner | 2020-05-28 | 1 | -0/+4 |
| | | | | | Skip new "racing" socket tests which fail randomly until someone fix them, to ease analysis of buildbot failures (skip tests which are known to be broken/unstable). | ||||
* | bpo-30064: Fix asyncio loop.sock_* race condition issue (#20369) | Fantix King | 2020-05-27 | 1 | -0/+131 |
| | |||||
* | bpo-40275: Avoid importing socket in test.support (GH-19603) | Serhiy Storchaka | 2020-04-25 | 1 | -1/+2 |
| | | | | | | * Move socket related functions from test.support to socket_helper. * Import socket, nntplib and urllib.error lazily in transient_internet(). * Remove importing multiprocess. | ||||
* | bpo-38107: Replace direct future and task contructor calls with factories in ↵ | Andrew Svetlov | 2019-09-11 | 1 | -2/+2 |
| | | | | asyncio tests (GH-15928) | ||||
* | bpo-30064: Refactor sock_* asyncio API (#10419) | Andrew Svetlov | 2018-11-12 | 1 | -0/+105 |
| | |||||
* | Extract tests for sock_*() functions into a separate file (GH-9761) | Andrew Svetlov | 2018-10-08 | 1 | -0/+238 |