summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
...
* gh-120590: Fix test_pydoc in the refleak hunting mode (GH-120615)Serhiy Storchaka2024-06-181-8/+32
* gh-120560: Mark `zip64` tests in `test_zipimport` as CPU-heavy (GH-120564)Nice Zombies2024-06-171-0/+2
* gh-120524: Avoid a Race On _PyRuntime.types.managed_static.types[i].interp_co...Eric Snow2024-06-171-1/+0
* gh-120417: Modify test_bdb to use the import (#120628)Victor Stinner2024-06-171-1/+2
* gh-120417: Remove unused imports in tests (part 1) (#120629)Victor Stinner2024-06-1710-13/+3
* gh-120417: Remove unused imports in tests (part 2) (#120630)Victor Stinner2024-06-1710-15/+5
* gh-120417: Remove unused imports in tests (part 3) (#120631)Victor Stinner2024-06-1710-14/+4
* gh-117657: Fix `__slots__` thread safety in free-threaded build (#119368)Daniele Parmeggiani2024-06-172-1/+44
* gh-115649: Copy the filename into main interpreter before intern in import.c ...AN Long2024-06-171-0/+2
* gh-120417: Remove unused imports in tests (part 4) (#120632)Victor Stinner2024-06-177-10/+1
* gh-114091: Reword error message for unawaitable types (#114090)Steele Farnsworth2024-06-173-8/+8
* gh-119933: Improve ``SyntaxError`` message for invalid type parameters expres...Bénédikt Tran2024-06-172-5/+107
* GH-120619: Clean up `RETURN_VALUE` instruction (GH-120624)Mark Shannon2024-06-171-6/+6
* gh-120367: fix removal of redundant NOPs and jumps after reordering hot-cold ...Irit Katriel2024-06-171-0/+27
* gh-120485: Add an override of `allow_reuse_port` on classes subclassing `sock...Idan Kapustian2024-06-161-0/+1
* gh-120579: Guard `_testcapi` import in `test_free_threading` (#120580)Nikita Sobolev2024-06-161-1/+6
* gh-112346: Always set OS byte to 255, simpler gzip.compress function. (GH-120...Ruben Vorderman2024-06-151-1/+11
* gh-120541: Improve the "less" prompt in pydoc (GH-120543)Serhiy Storchaka2024-06-151-13/+49
* Add some more edge-case tests for `inspect.get_annotations` with `eval_str=Tr...Alex Waygood2024-06-152-11/+36
* gh-120495: Fix incorrect exception handling in Tab Nanny (#120498)Wulian2332024-06-151-1/+1
* gh-120544: Add `else: fail()` to tests where exception is expected (#120545)Nikita Sobolev2024-06-152-0/+12
* gh-117398: Use the correct module loader for iOS in datetime CAPI test. (#120...Russell Keith-Magee2024-06-151-1/+8
* gh-119819: Conditional skip of logging tests that require multiprocessing sub...Russell Keith-Magee2024-06-151-3/+2
* gh-120524: Temporarily Skip test_create_many_threaded In test_interpreters.te...Eric Snow2024-06-141-0/+1
* gh-120161: Fix a Crash in the _datetime Module (gh-120182)Eric Snow2024-06-141-1/+43
* gh-120417: Fix "imported but unused" linter warnings (#120461)Victor Stinner2024-06-142-1/+57
* gh-119824: Print stack entry when user input is needed (#119882)Tian Gao2024-06-141-8/+42
* gh-120361: Add `nonmember` test with enum flags inside to `test_enum` (GH-120...Nikita Sobolev2024-06-141-0/+21
* GH-73991: Add `pathlib.Path.copy()` (#119058)Barney Gale2024-06-141-0/+62
* Update tests for the itertools docs rough equivalents (#120509)Raymond Hettinger2024-06-141-18/+315
* Stronger tests for the statistics kernel formulas (gh-120506)Raymond Hettinger2024-06-141-3/+7
* gh-114053: Fix bad interaction of PEP 695, PEP 563 and `inspect.get_annotatio...Alex Waygood2024-06-132-0/+175
* gh-120012: clarify the behaviour of `multiprocessing.Queue.empty` on closed q...Bénédikt Tran2024-06-131-0/+26
* gh-117398: Add datetime C-API type check test for subinterpreters (gh-119604)neonene2024-06-132-1/+42
* gh-120418: Don't assume wheeldata is deleted if `WHEEL_PKG_DIR` is set (#120419)Stefano Rivera2024-06-121-3/+4
* gh-118908: Protect the REPL subprocess with a timeout in tests (#120408)Pablo Galindo Salgado2024-06-121-1/+6
* gh-120343: Fix column offsets of multiline tokens in tokenize (#120391)Lysandros Nikolaou2024-06-121-0/+14
* gh-71587: Drop local reference cache to `_strptime` module in `_datetime` (gh...neonene2024-06-121-0/+9
* gh-120388: Improve deprecation warning message, when test returns non-None (#...Nikita Sobolev2024-06-122-0/+22
* gh-117657: Make Py_TYPE and Py_SET_TYPE thread safe (GH-120165)Ken Jin2024-06-121-0/+26
* gh-93691: fix too broad source locations of for statement iterators (#120330)Irit Katriel2024-06-123-3/+50
* gh-120029: make `symtable.Symbol.__repr__` correctly reflect the compiler's f...Bénédikt Tran2024-06-121-0/+21
* gh-120198: Fix race condition when editing __class__ with an audit hook activ...Ken Jin2024-06-112-1/+35
* gh-118908: Limit exposed globals from internal imports and definitions on new...Eugene Triguba2024-06-112-5/+63
* gh-120343: Do not reset byte_col_offset_diff after multiline tokens (#120352)Lysandros Nikolaou2024-06-111-0/+11
* gh-119180: PEP 649 compiler changes (#119361)Jelle Zijlstra2024-06-1113-107/+208
* gh-120080: Mark test_round_with_none_arg_direct_call as cpython_only (#120328)Kirill Podoprigora2024-06-112-0/+2
* gh-120298: Fix use-after-free in `list_richcompare_impl` (#120303)Nikita Sobolev2024-06-111-0/+11
* gh-65454: avoid triggering call to a PropertyMock in NonCallableMock.__setatt...blhsing2024-06-111-0/+8
* gh-119600: mock: do not access attributes of original when new_callable is se...Robert Collins2024-06-112-0/+18