summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* gh-100445: Improve error message for unterminated strings with escapes (#100446)Shantanu2023-10-181-2/+8
* gh-111019: Align expected and actual titles in test output (#111020)James2023-10-181-7/+7
* gh-108747: Add unit tests for site.{usercustomize,sitecustomize} hooks (#109470)Charles Machalow2023-10-181-0/+38
* gh-110938: More syntax tests for PEP695 funcs and classes (#110986)Nikita Sobolev2023-10-181-0/+15
* gh-84570: Add Timeouts to SendChannel.send() and RecvChannel.recv() (gh-110567)Eric Snow2023-10-173-25/+128
* gh-84570: Send-Wait Fixes for _xxinterpchannels (gh-111006)Eric Snow2023-10-171-44/+173
* gh-110995: Fix test_gdb check_usable_gdb() (#110998)Victor Stinner2023-10-171-6/+11
* gh-85283: Add PySys_Audit() to the limited C API (#108571)Victor Stinner2023-10-171-0/+2
* gh-110938: Fix error messages for indented blocks with functions and classes ...Pablo Galindo Salgado2023-10-171-0/+10
* gh-110695: test_asyncio uses 50 ms for clock resolution (#110952)Victor Stinner2023-10-171-2/+2
* gh-85283: Add PyMem_RawMalloc() to the limited C API (#108570)Victor Stinner2023-10-171-0/+4
* gh-110905: [Enum] minor fixes and cleanup (GH-110906)Pieter Eendebak2023-10-161-1/+1
* Enable ruff on several more files in `Lib/test` (#110929)Alex Waygood2023-10-166-21/+16
* gh-107450: Check for overflow in the tokenizer and fix overflow test (#110832)Lysandros Nikolaou2023-10-161-4/+12
* gh-110912: Correctly display tracebacks for MemoryError exceptions using the ...Pablo Galindo Salgado2023-10-161-0/+11
* gh-110907: AC: Disallow using `*` with vararg (#110908)Nikita Sobolev2023-10-161-0/+14
* gh-110923: Fix silently skipped tests in test__opcode.py (#110926)Alex Waygood2023-10-162-2/+9
* gh-110864: Fix _PyArg_UnpackKeywordsWithVararg overwriting vararg with NULL (...Nikita Sobolev2023-10-161-0/+35
* gh-108791: Fix `pdb` CLI invalid argument handling (#108816)Radislav Chugunov2023-10-161-2/+17
* regrtest: Prepend 'use' options in --{fast,slow}-ci (GH-110363)Zachary Ware2023-10-152-7/+11
* Lint: Include test_monitoring.py for Ruff (#110898)Hugo van Kemenade2023-10-151-2/+0
* gh-84583: Make pdb enter post-mortem mode even for SyntaxError (#110883)Tian Gao2023-10-151-1/+16
* gh-110722: Add PYTHON_PRESITE to import a module before site.py is run (#110769)Łukasz Langa2023-10-141-0/+18
* bpo-42663: Fix parsing TZ strings in zoneinfo module (GH-23825)Serhiy Storchaka2023-10-141-7/+118
* gh-110715: Add missing import in zipfile (gh-110822)Kirill Podoprigora2023-10-141-7/+18
* gh-109747: Improve errors for unsupported look-behind patterns (GH-109859)Serhiy Storchaka2023-10-141-0/+23
* gh-107705: Fix file leak in test_tkinter in the C locale (GH-110507)Serhiy Storchaka2023-10-141-5/+10
* gh-88434: Emit deprecation warnings for non-integer numbers in gettext if tra...Serhiy Storchaka2023-10-141-12/+14
* gh-110628: Add tests for PyLong C API (GH-110629)Serhiy Storchaka2023-10-141-17/+376
* gh-110392: Fix tty functions (GH-110642)Serhiy Storchaka2023-10-141-2/+6
* gh-110815: Support non-ASCII keyword names in PyArg_ParseTupleAndKeywords() (...Serhiy Storchaka2023-10-141-0/+51
* regrtest: --fast-ci/slow-ci no longer imply --rerun-fail (#110849)Victor Stinner2023-10-142-2/+0
* gh-110697: test_os TimerfdTests uses selectors (#110789)Victor Stinner2023-10-131-102/+67
* gh-110771: Decompose run_forever() into parts (#110773)Russell Keith-Magee2023-10-131-0/+37
* gh-110815: Improve tests for PyArg_ParseTupleAndKeywords() (GH-110817)Serhiy Storchaka2023-10-131-5/+31
* gh-110805: Allow the repl to show source code and complete tracebacks (#110775)Pablo Galindo Salgado2023-10-132-0/+64
* gh-107450: Fix testMemoryErrorBigSource using the bigmemtest decorator (GH-11...Lysandros Nikolaou2023-10-131-1/+1
* gh-110525: Delete `test_c_api` method from `set` object (#110688)Nikita Sobolev2023-10-132-5/+1
* gh-107450: Fix parser column offset overflow test on Windows (#110768)Lysandros Nikolaou2023-10-131-1/+3
* GH-110796: fix intermittent test failure in test_current_exceptionsFilipe Laíns2023-10-131-6/+3
* GH-103480: make sysconfig a package (GH-110785)Filipe Laíns2023-10-121-2/+3
* gh-110782: Fix crash when TypeVar is constructed with keyword args (#110784)Jelle Zijlstra2023-10-121-0/+6
* gh-110721: Use the traceback module for PyErr_Display() and fallback to the C...Pablo Galindo Salgado2023-10-122-15/+43
* gh-94597: Add asyncio.EventLoop (#110723)Thomas Grainger2023-10-121-0/+11
* gh-109409: Fix inheritance of frozen dataclass from non-frozen dataclass mixi...Nikita Sobolev2023-10-121-0/+95
* gh-107450: Raise OverflowError when parser column offset overflows (#110754)Lysandros Nikolaou2023-10-121-0/+4
* gh-110696: Fix incorrect syntax error message for incorrect argument unpackin...Pablo Galindo Salgado2023-10-121-0/+11
* gh-106193: Rename and fix duplicated tests in `test_monitoring` (GH-109139)Hugo van Kemenade2023-10-121-7/+7
* gh-104169: Fix test_peg_generator after tokenizer refactoring (#110727)Lysandros Nikolaou2023-10-123-4/+4
* gh-110682: Ignore `__match_args__` from `__instancecheck__` in protocols (#11...Nikita Sobolev2023-10-121-0/+33