summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-105866: fix dataclass with slots=True, weakref_slot=True (GH-105870...Miss Islington (bot)2024-03-192-1/+14
* [3.12] gh-90535: Fix support of interval>1 in logging.TimedRotatingFileHandle...Miss Islington (bot)2024-03-182-35/+170
* [3.12] gh-115874: Don't use module state in teedataobject tp_dealloc (GH-1162...Miss Islington (bot)2024-03-181-1/+9
* [3.12] gh-112536: Add TSAN build on Github Actions (GH-116872)Antoine Pitrou2024-03-182-0/+8
* [3.12] gh-112536: Add --tsan test for reasonable TSAN execution times. (gh-11...Antoine Pitrou2024-03-185-2/+57
* [3.12] gh-112536: Add support for thread sanitizer (TSAN) (gh-112648) (#116924)Antoine Pitrou2024-03-173-10/+25
* [3.12] gh-116780: Fix `test_inspect` in `-OO` mode (GH-116788) (#116799)Nikita Sobolev2024-03-171-0/+1
* [3.12] gh-116484: Fix collisions between Checkbutton and ttk.Checkbutton defa...Miss Islington (bot)2024-03-162-2/+27
* [3.12] gh-116764: Fix regressions in urllib.parse.parse_qsl() (GH-116801) (GH...Miss Islington (bot)2024-03-162-1/+29
* [3.12] gh-116858: Add `@cpython_only` to several tests in `test_cmd_line` (GH...Nikita Sobolev2024-03-161-0/+9
* [3.12] gh-116811: Ensure MetadataPathFinder.invalidate_caches is reachable wh...Jason R. Coombs2024-03-152-0/+4
* [3.12] gh-90095: Ignore empty lines and comments in `.pdbrc` (GH-116834) (#11...Miss Islington (bot)2024-03-152-1/+23
* [3.12] gh-112795: Move the test for ZipFile into the core tests for zipfile. ...Miss Islington (bot)2024-03-142-12/+11
* [3.12] gh-116731: libregrtest: Clear inspect & importlib.metadata caches in c...Miss Islington (bot)2024-03-141-0/+9
* [3.12] gh-116626: Emit `CALL` events for all `INSTRUMENTED_CALL_FUNCTION_EX (...Tian Gao2024-03-141-0/+15
* [3.12] gh-116785: Fix direct invocation of `test_inspect` (GH-116787) (#116794)Miss Islington (bot)2024-03-141-5/+5
* [3.12] GH-115979: update test_importlib to work under WASI SDK 21 (GH-116754)...Miss Islington (bot)2024-03-137-28/+44
* [3.12] gh-100746: Improve `test_named_expressions.py` (GH-116713) (#116747)Miss Islington (bot)2024-03-131-2/+68
* [3.12] gh-110918: Fix side effects of regrtest test_match_tests() (GH-116718)...Miss Islington (bot)2024-03-132-1/+10
* [3.12] gh-116401: Fix blocking os.fwalk() and shutil.rmtree() on opening a na...Serhiy Storchaka2024-03-135-8/+111
* [3.12] gh-116491: Improve `test_win32_ver` (GH-116506) (#116708)Miss Islington (bot)2024-03-131-1/+29
* [3.12] gh-115264: Fix `test_functools` with `-00` mode (GH-115276) (#116707)Miss Islington (bot)2024-03-131-3/+12
* [3.12] gh-116682: stdout may be empty in test_cancel_futures_wait_false (GH-1...Miss Islington (bot)2024-03-131-1/+3
* [3.12] gh-116604: Correctly honor the gc status when calling _Py_RunGC (GH-11...Pablo Galindo Salgado2024-03-121-0/+25
* [3.12] gh-116307: Proper fix for 'mod' leaking across importlib tests (GH-116...Miss Islington (bot)2024-03-122-1/+13
* [3.12] gh-116656: Fix test_capi test_py_config_isoloated_per_interpreter() (G...Miss Islington (bot)2024-03-121-0/+1
* [3.12] gh-90095: Make .pdbrc work properly and add some reasonable te… (#11...Tian Gao2024-03-122-95/+101
* [3.12] gh-116600: [Enum] fix global Flag repr (GH-116615) (GH-116629)Miss Islington (bot)2024-03-122-1/+3
* [3.12] gh-116040: [Enum] fix test_empty_names test (GH-116508) (GH-116619)Miss Islington (bot)2024-03-112-14/+8
* [3.12] gh-71052: Use `raise_signal` in `ThreadSignals.test_signals` (GH-11642...Miss Islington (bot)2024-03-111-18/+7
* [3.12] gh-88352: Make TimedRotatingFileHandler tests more stable (GH-116409) ...Miss Islington (bot)2024-03-111-38/+17
* [3.12] gh-115142: Skip ``test__xxsubinterpreters`` if ``_testcapi`` is not av...Kirill Podoprigora2024-03-091-2/+1
* [3.12] gh-116485: Fixed the typo (GH-116486) (#116489)Miss Islington (bot)2024-03-081-1/+1
* [3.12] gh-116040: [Enum] fix by-value calls when second value is falsey (GH-1...Ethan Furman2024-03-072-4/+45
* [3.12] gh-115421: List all test subdirs in Makefile, and test them (GH-115813...Petr Viktorin2024-03-071-0/+64
* [3.12] gh-88118: Fix some test_multiprocessing flakiness. (GH-116434) (GH-116...Miss Islington (bot)2024-03-061-5/+10
* [3.12] gh-115398: Expose Expat >=2.6.0 reparse deferral API (CVE-2023-52425) ...Sebastian Pipping2024-03-065-16/+196
* [3.12] gh-116143: Fix race condition in pydoc _start_server (GH-116144) (#116...Miss Islington (bot)2024-03-061-3/+4
* [3.12] chore: fix typos (#116345) (#116370)Terry Jan Reedy2024-03-056-7/+7
* [3.12] gh-74668: Fix support of bytes in urllib.parse.parse_qsl() (GH-115771)...Miss Islington (bot)2024-03-052-26/+61
* [3.12] gh-76511: Fix email.Message.as_string() for non-ASCII message with ASC...Miss Islington (bot)2024-03-053-2/+17
* [3.12] gh-116325: Raise `SyntaxError` rather than `IndexError` on ForwardRef ...Miss Islington (bot)2024-03-052-1/+7
* [3.12] gh-115809: Improve TimedRotatingFileHandler.getFilesToDelete() (GH-115...Miss Islington (bot)2024-03-032-36/+52
* [3.12] gh-114494: Change logging docstring to bool for exec_info (GH=114558) ...Miss Islington (bot)2024-03-021-6/+6
* [3.12] gh-112281: Allow `Union` with unhashable `Annotated` metadata (GH-1122...Miss Islington (bot)2024-03-013-18/+154
* [3.12] gh-88352: Fix logging.TimedRotatingFileHandler (GH-116191) (GH-116208)Miss Islington (bot)2024-03-012-32/+367
* [3.12] gh-101293: Fix support of custom callables and types in inspect.Signat...Miss Islington (bot)2024-03-012-89/+434
* [3.12] gh-87115: Set `__main__.__spec__` to `None` in pdb (GH-116141) (#116154)Tian Gao2024-02-292-0/+13
* [3.12] gh-72463: Fix ctypes/test_loading.py so that test_find reports skipped...Miss Islington (bot)2024-02-291-0/+4
* [3.12] gh-116103: Prevent error in WindowsLoadTracker.__del__ on permission e...Miss Islington (bot)2024-02-291-0/+4