summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_sendfile.py
Commit message (Collapse)AuthorAgeFilesLines
* gh-127949: deprecate `asyncio.set_event_loop_policy` (#128024)Kumar Aditya2024-12-181-1/+1
| | | | First step towards deprecating the asyncio policy system. This deprecates `asyncio.set_event_loop_policy` and will be removed in Python 3.16.
* gh-120226: Fix test_sendfile_close_peer_in_the_middle_of_receiving on Linux ↵Xi Ruoyao2024-06-071-7/+4
| | | | | >= 6.10 (#120227) The worst case is that the kernel buffers 17 pages with a page size of 64k.
* gh-111347: Remove wrong assertion in test_sendfile (#111377)zcxsythenew2023-10-291-2/+5
| | | Windows is different.
* gh-98174: Handle EPROTOTYPE under macOS in ↵fancidev2022-10-171-2/+12
| | | | | test_sendfile_fallback_close_peer_in_the_middle_of_receiving (#98316) Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
* Remove trailing spaces (GH-31695)Serhiy Storchaka2022-03-051-2/+2
|
* fixed flaky test (GH-30845)Kumar Aditya2022-01-241-5/+7
|
* bpo-41682: Skip unstable test_asyncio sendfile test on Windows (GH-30801)Nikita Sobolev2022-01-221-0/+2
|
* bpo-46425: fix direct invocation of `asyncio` tests (#30725)Nikita Sobolev2022-01-221-0/+4
|
* bpo-23819: Get rid of assert statements in test_asyncio (GH-30212)Serhiy Storchaka2021-12-201-4/+8
| | | | | | To keep checks even if run tests with optimized Python. Either use special assertion methods like assertEqual() or raise an AssertionError explicitly.
* bpo-41687: Fix sendfile implementation to work with Solaris (#22040)Jakub Kulík2020-09-051-0/+6
|
* bpo-40275: Use new test.support helper submodules in tests (GH-20824)Hai Shi2020-06-251-3/+4
|
* bpo-40275: Avoid importing socket in test.support (GH-19603)Serhiy Storchaka2020-04-251-6/+7
| | | | | | * Move socket related functions from test.support to socket_helper. * Import socket, nntplib and urllib.error lazily in transient_internet(). * Remove importing multiprocess.
* bpo-37279: Fix asyncio sendfile support when extra data are sent in ↵Andrew Svetlov2019-06-151-1/+2
| | | | fallback mode. (GH-14075)
* bpo-32710: test_asyncio: test_sendfile reset policy (GH-11461)Victor Stinner2019-01-071-0/+4
| | | | | test_asyncio/test_sendfile.py now resets the event loop policy using tearDownModule() as done in other tests, to prevent a warning when running tests on Windows.
* Extract sendfile tests into a separate test file (#9757)Andrew Svetlov2018-10-091-0/+550