summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* [3.11] gh-110160: Fix flaky `test_find_periodic_pattern` in `string_tests` (â...Victor Stinner2023-10-011-3/+11
* [3.11] gh-110088: Fix asyncio test_prompt_cancellation() (GH-110157) (#110159)Miss Islington (bot)2023-09-301-3/+0
* [3.11] gh-109748: Fix again venv test_zippath_from_non_installed_posix() (GH-...Miss Islington (bot)2023-09-302-2/+6
* [3.11] gh-107888: Fix test_mmap PROT_EXEC comment (GH-110125) (#110130)Miss Islington (bot)2023-09-291-1/+1
* [3.11] gh-108851: Fix support.get_recursion_available() for USE_STACKCHECK (#...Victor Stinner2023-09-292-5/+23
* gh-109615: Look for 'Modules' as landmark for test_copy_python_src_ignore (GH...Miss Islington (bot)2023-09-291-1/+3
* [3.11] gh-109592: test_eintr tolerates 20 ms when comparing timings (GH-11010...Miss Islington (bot)2023-09-291-7/+16
* [3.11] gh-110031: Skip test_threading fork tests if ASAN (#110100) (#110104)Victor Stinner2023-09-291-17/+26
* [3.11] gh-110088, gh-109878: Fix test_asyncio timeouts (#110092) (#110099)Victor Stinner2023-09-296-54/+15
* [3.11] gh-110036: multiprocessing Popen.terminate() catches PermissionError (...Miss Islington (bot)2023-09-291-2/+3
* [3.11] gh-109960: Remove test_pty timeout of 10 seconds (GH-110058) (#110061)Miss Islington (bot)2023-09-291-11/+0
* [3.11] gh-110038: KqueueSelector must count all read/write events (GH-110039)...Davide Rizzo2023-09-281-0/+29
* [3.11] gh-110033: Fix signal test_interprocess_signal() (GH-110035) (#110041)Miss Islington (bot)2023-09-281-0/+8
* [3.11] gh-109594: Fix concurrent.futures test_timeout() (GH-110018) (#110022)Miss Islington (bot)2023-09-281-7/+9
* [3.11] gh-109615: Fix support test_copy_python_src_ignore() on WASM (GH-10997...Miss Islington (bot)2023-09-271-1/+9
* [3.11] gh-109615: Fix support test_copy_python_src_ignore() (#109958) (#109962)Victor Stinner2023-09-273-6/+16
* [3.11] gh-109615: Fix test_tools.test_freeze SRCDIR (#109935) (#109951)Victor Stinner2023-09-274-9/+51
* [3.11] gh-107888: Fix test_mmap.test_access_parameter() on macOS 14 (GH-10992...Miss Islington (bot)2023-09-261-4/+9
* [3.11] gh-109845: Make test_ftplib more stable under load (GH-109912) (GH-109...Miss Islington (bot)2023-09-261-20/+18
* [3.11] gh-109593: Fix reentrancy issue in multiprocessing resource_tracker (G...Miss Islington (bot)2023-09-263-0/+41
* [3.11] gh-109832: concurrent.futures test_deadlock restores sys.stderr (GH-10...Miss Islington (bot)2023-09-261-0/+6
* [3.11] gh-109401: Fix threading barrier test_default_timeout() (GH-109875) (#...Miss Islington (bot)2023-09-261-4/+6
* [3.11] gh-109748: Fix venv test_zippath_from_non_installed_posix() (GH-109872...Miss Islington (bot)2023-09-251-1/+9
* [3.11] gh-89363: Skip threading test_is_alive_after_fork() if ASAN (GH-109835...Miss Islington (bot)2023-09-252-1/+5
* [3.11] gh-109833: Fix asyncio test_wait_for() (GH-109834) (#109838)Miss Islington (bot)2023-09-251-2/+3
* [3.11] gh-105829: Fix concurrent.futures.ProcessPoolExecutor deadlock (GH-108...elfstrom2023-09-241-1/+71
* [3.11] gh-109706: Fix multiprocessing test_nested_startmethod() (GH-109707) (...Miss Islington (bot)2023-09-221-1/+3
* [3.11] gh-108303: Fix and move `badsyntax_pep3120.py` (GH-109513) (#109724)Nikita Sobolev2023-09-224-8/+8
* [3.11] gh-109709: Fix asyncio test_stdin_broken_pipe() (#109710) (#109735)Victor Stinner2023-09-221-10/+42
* [3.11] gh-109625: Move _ready_to_import() from test_import to support.import_...Nikita Sobolev2023-09-223-34/+35
* [3.11] gh-109702: Increase concurrent_futures deadlock timeout (GH-109703) (#...Miss Islington (bot)2023-09-221-1/+1
* [3.11] gh-109375: Fix bug where pdb registers an alias without an associated ...Miss Islington (bot)2023-09-221-0/+6
* [3.11] gh-108388: Convert test_concurrent_futures to package (#108401) (#109704)Victor Stinner2023-09-2213-1677/+1575
* [3.11] gh-108948: Skip test_tarfile.test_modes() on EFTYPE error (#109697) (#...Victor Stinner2023-09-211-3/+16
* [3.11] gh-108388: Split test_multiprocessing_spawn (GH-108396) (#109688)Miss Islington (bot)2023-09-2118-27/+113
* [3.11] gh-108303: Move tokenize-related data to Lib/test/tokenizedata (GH-109...Victor Stinner2023-09-2116-23/+38
* [3.11] gh-108303: Move `test_future` into its own test_future_stmt subdir (#1...Victor Stinner2023-09-2117-19/+36
* [3.11] gh-109546: Add more tests for formatting floats (GH-109548) (#109685)Victor Stinner2023-09-211-2/+7
* [3.11] gh-108303: Create Lib/test/test_dataclasses/ directory (#108978) (#109...Victor Stinner2023-09-217-6/+6
* [3.11] gh-108303: Move `ann_module*.py` files to `typinganndata/` folder (#10...Victor Stinner2023-09-2113-9/+13
* [3.11] gh-108303: Remove unused Lib/test/sgml_input.html (GH-108305) (#109670)Miss Islington (bot)2023-09-211-212/+0
* [3.11] Fix typos in docs and comments (#109619) (#109622)Alex Waygood2023-09-203-3/+3
* [3.11] gh-103053: Skip test_freeze_simple_script() on PGO build (#109591) (#1...Victor Stinner2023-09-204-10/+31
* [3.11] gh-108843: fix ast.unparse for f-string with many quotes (#108980)Shantanu2023-09-181-0/+5
* [3.11] gh-60283: Check for redefined test names in CI (#109161) (#109366)Hugo van Kemenade2023-09-151-0/+30
* [3.11] gh-108822: Fix regrtest clear_caches() (#109432)Victor Stinner2023-09-151-7/+0
* [3.11] gh-109396: Fix test_socket.test_hmac_sha1() in FIPS mode (GH-109423) (...Miss Islington (bot)2023-09-141-3/+7
* [3.11] gh-109351: Fix crash when compiling AST with invalid NamedExpr (GH-109...Miss Islington (bot)2023-09-131-0/+27
* [3.11] gh-104736: Fix test_gdb tests on ppc64le with clang (GH-109360) (#109362)Miss Islington (bot)2023-09-131-0/+8
* [3.11] gh-109179: Fix traceback display for SyntaxErrors with notes (#109197)...Irit Katriel2023-09-121-21/+22