summaryrefslogtreecommitdiffstats
path: root/Lib/test/support
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-120678: pyrepl: Include globals from modules passed with `-i` (GH-1...Miss Islington (bot)2024-07-171-1/+5
* [3.13] gh-76785: Expand How Interpreter Channels Handle Interpreter Finalizat...Miss Islington (bot)2024-07-153-63/+209
* [3.13] gh-76785: Expand How Interpreter Queues Handle Interpreter Finalizatio...Miss Islington (bot)2024-07-151-13/+128
* [3.13] gh-121571: Do not use `EnvironmentError` in tests, use `OSError` inste...Miss Islington (bot)2024-07-101-1/+1
* [3.13] gh-121016: Add test for PYTHON_BASIC_REPL envioronment variable (GH-12...devdanzin2024-06-261-0/+6
* [3.13] gh-117398: Add datetime C-API type check test for subinterpreters (gh-...Miss Islington (bot)2024-06-131-1/+1
* [3.13] gh-117657: Fix race involving immortalizing objects (GH-119927) (#120005)Sam Gross2024-06-031-2/+2
* gh-118527: Intern code consts in free-threaded build (#118667)Sam Gross2024-05-071-0/+9
* gh-117225: Move colorize functionality to own internal module (#118283)Hugo van Kemenade2024-05-011-4/+5
* gh-118201: Accomodate flaky behavior of `os.sysconf` on iOS (GH-118453)Russell Keith-Magee2024-05-011-1/+2
* gh-118335: Configure Tier 2 interpreter at build time (#118339)Guido van Rossum2024-05-011-4/+4
* gh-117783: Immortalize objects that use deferred reference counting (#118112)Sam Gross2024-04-291-0/+19
* gh-118351: Adapt support.TEST_MODULES_ENABLED for builds without the config v...Kirill Podoprigora2024-04-291-2/+3
* gh-112730: Make the test suite resilient to color-activation environment vari...Pablo Galindo Salgado2024-04-241-0/+20
* gh-76785: Rename _xxsubinterpreters to _interpreters (gh-117791)Eric Snow2024-04-244-7/+7
* gh-117225: Add color to doctest output (#117583)Hugo van Kemenade2024-04-241-1/+1
* gh-117680: make _PyInstructionSequence a PyObject and use it in tests (#117629)Irit Katriel2024-04-171-44/+41
* gh-76785: Handle Legacy Interpreters Properly (gh-117490)Eric Snow2024-04-111-23/+56
* gh-117649: Raise ImportError for unsupported modules in free-threaded build (...Sam Gross2024-04-111-0/+6
* gh-76785: Add More Tests to test_interpreters.test_api (gh-117662)Eric Snow2024-04-111-3/+4
* gh-116303: Skip tests if C recursion limit is unavailable (GH-117368)Erlend E. Aasland2024-04-081-12/+8
* gh-117478: Add `@support.requires_gil_enabled` decorator (#117479)Sam Gross2024-04-041-1/+6
* gh-76785: Raise InterpreterError, Not RuntimeError (gh-117489)Eric Snow2024-04-031-2/+2
* gh-116303: Skip test module dependent tests if test modules are unavailable (...Erlend E. Aasland2024-04-031-0/+4
* gh-76785: Consolidate Some Interpreter-related Testing Helpers (gh-117485)Eric Snow2024-04-021-4/+4
* gh-76785: Add PyInterpreterConfig Helpers (gh-117170)Eric Snow2024-04-021-2/+13
* gh-116303: Handle disabled test modules in test.support helpers (#116482)Erlend E. Aasland2024-03-282-8/+26
* gh-71042: Add `platform.android_ver` (#116674)Malcolm Smith2024-03-271-8/+8
* gh-92906: Enable test_cext and test_cppext on Windows (#117000)Victor Stinner2024-03-191-8/+14
* gh-112536: Add test_threading to TSAN tests (#116898)Antoine Pitrou2024-03-161-2/+2
* gh-116604: Fix test_gc on free-threaded build (#116662)Sam Gross2024-03-131-0/+10
* gh-116307: Proper fix for 'mod' leaking across importlib tests (#116680)Jason R. Coombs2024-03-121-0/+12
* gh-71052: Change Android's `sys.platform` from "linux" to "android"Malcolm Smith2024-03-112-2/+2
* gh-116417: Add _testlimitedcapi C extension (#116419)Victor Stinner2024-03-071-1/+2
* gh-76785: Minor Improvements to "interpreters" Module (gh-116328)Eric Snow2024-03-053-16/+35
* gh-76785: Fix interpreters.Queue.get_nowait() (gh-116166)Eric Snow2024-03-011-1/+6
* gh-71052: Add test exclusions to support running the test suite on Android (#...Malcolm Smith2024-02-292-2/+28
* gh-76785: Update test.support.interpreters to Align With PEP 734 (gh-115566)Eric Snow2024-02-282-22/+103
* gh-114911: Add CPUStopwatch test helper (GH-114912)Petr Viktorin2024-02-281-0/+40
* gh-112087: Make __sizeof__ and listiter_{len, next} to be threadsafe (gh-114843)Donghee Na2024-02-141-12/+15
* gh-114099: Add test exclusions to support running the test suite on iOS (#114...Russell Keith-Magee2024-02-052-9/+25
* gh-108303: Move `.whl` test files to `Lib/test/wheeldata/` (#114343)Nikita Sobolev2024-01-231-1/+3
* gh-108303: Move `smtpd` to `test.support` (#114368)Nikita Sobolev2024-01-221-0/+873
* gh-80931: Skip some socket tests while hunting for refleaks on macOS (#114057)Ronald Oussoren2024-01-211-0/+8
* gh-108303: Move all doctest related files and tests to `Lib/test/test_doctest...Nikita Sobolev2024-01-181-0/+20
* GH-113655: Lower the C recursion limit on various platforms (GH-113944)Mark Shannon2024-01-161-1/+4
* gh-112536: Add support for thread sanitizer (TSAN) (gh-112648)Samet YASLAN2023-12-301-7/+12
* GH-112215: Increase C recursion limit for non debug builds (GH-113397)Mark Shannon2023-12-221-15/+8
* gh-113090: Fix test.support.os_support.can_chmod() on Windows (GH-113091)Serhiy Storchaka2023-12-141-3/+7
* gh-112962: in dis module, put cache information in the Instruction instead of...Irit Katriel2023-12-131-0/+12