summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_ssl.py
Commit message (Collapse)AuthorAgeFilesLines
* gh-95649: Document that asyncio contains uvloop code (#107536)Alois Klink2024-01-121-0/+4
| | | | | | | | Some of the asyncio SSL changes in GH-31275 [1] were taken from v0.16.0 of the uvloop project [2]. In order to comply with the MIT license, we need to just need to document the copyright information. [1]: https://github.com/python/cpython/pull/31275 [2]: https://github.com/MagicStack/uvloop/tree/v0.16.0
* gh-102515: Remove unused imports in the `Lib/` directory (#102516)Alex Waygood2023-03-081-1/+0
|
* gh-60203: Always pass True/False as boolean arguments in tests (GH-99983)Serhiy Storchaka2022-12-041-1/+1
| | | Unless we explicitly test non-bool values.
* gh-95573: Reduce test data size in test_asyncio/test_ssl.py (GH-95668)Fantix King2022-08-051-7/+12
| | | Co-authored-by: Łukasz Langa <lukasz@langa.pl>
* gh-95573: Fix a mistake in asyncio ssl tests suppressing all logs (#95687)Fantix King2022-08-051-1/+11
|
* gh-90978: asyncio TestSSL uses SHORT_TIMEOUT (#92642)Victor Stinner2022-05-111-10/+13
| | | | TestSSL of asyncio now uses support.SHORT_TIMEOUT rather than hardcoded timeouts like 5, 10 or 40 seconds.
* gh-90978: test_ssl of test_asyncio uses LONG_TIMEOUT (#92402)Victor Stinner2022-05-061-3/+3
| | | | | | On slow buildbot workers, some test_ssl tests fail randomly because of short timeout (30 seconds). Use support.LONG_TIMEOUT instead which is longer and also adjusted (by regrtest --timeout option) on buildbot workers known to be slow.
* bpo-46822: Increase timeout for test_create_server_ssl_over_ssl to match ↵Steve Dower2022-02-221-1/+1
| | | | underlying timeouts (GH-31502)
* bpo-44011: New asyncio ssl implementation (#31275)Kumar Aditya2022-02-151-0/+1721
| | | | | | | | | | | * bpo-44011: New asyncio ssl implementation Co-Authored-By: Andrew Svetlov <andrew.svetlov@gmail.com> * fix warning * fix typo Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
* bpo-44011: Revert "New asyncio ssl implementation (GH-17975)" (GH-25848)Pablo Galindo2021-05-031-1723/+0
| | | | This reverts commit 5fb06edbbb769561e245d0fe13002bab50e2ae60 and all subsequent dependent commits.
* Increase test timeout (GH-25842)Andrew Svetlov2021-05-031-3/+3
|
* bpo-44011: Fix asyncio tests without ssl module (GH-25840)Christian Heimes2021-05-031-2/+7
| | | Signed-off-by: Christian Heimes <christian@python.org>
* bpo-44011: New asyncio ssl implementation (#17975)Andrew Svetlov2021-05-021-0/+1718