summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* bpo-47103: Copy pgort140.dll into output directory when building PGInstrument...Steve Dower2022-04-061-14/+5
* bpo-47061: deprecate the `aifc` module (GH-32134)Brett Cannon2022-04-055-5/+57
* bpo-4833: Add ZipFile.mkdir (GH-32160)Sam Ezeh2022-04-051-0/+53
* bpo-46607: Add DeprecationWarning for LegacyInterpolation, deprecated in docs...Hugo van Kemenade2022-04-051-0/+8
* bpo-47088: Add typing.LiteralString (PEP 675) (GH-32064)Jelle Zijlstra2022-04-051-1/+55
* bpo-41930: Add support for SQLite serialise/deserialise API (GH-26728)Erlend Egeberg Aasland2022-04-051-0/+55
* bpo-47212: Improve error messages for un-parenthesized generator expressions ...Matthieu Dartiailh2022-04-052-1/+17
* bpo-47120: make JUMP_NO_INTERRUPT relative (GH-32221)Irit Katriel2022-04-051-1/+2
* bpo-46890: Fix setting of sys._base_executable with framework builds on macOS...Ronald Oussoren2022-04-051-0/+177
* bpo-43224: typing: Add tests for pickling and copying of unpacked native tupl...Matthew Rahtz2022-04-051-17/+56
* bpo-46998: Allow subclassing Any at runtime (GH-31841)Shantanu2022-04-053-27/+21
* bpo-46484:Add test for Calendar.iterweekdays (GH-30825)1809092022-04-041-0/+8
* bpo-47000: Make `io.text_encoding()` respects UTF-8 mode (GH-32003)Inada Naoki2022-04-042-3/+14
* bpo-46126: Restore 'descriptions' when running tests internally. (GH-32128)Jason R. Coombs2022-04-031-5/+1
* bpo-23689: re module, fix memory leak when a match is terminated by a signal ...Ma Lin2022-04-031-2/+26
* bpo-47205: Skip error check of sched_get/setaffinity on FreeBSD (GH-32285)Christian Heimes2022-04-031-2/+6
* bpo-47152: Convert the re module into a package (GH-32177)Serhiy Storchaka2022-04-023-7/+33
* bpo-40280: Enable most file-at() and nanosleep APIs again (GH-32238)Christian Heimes2022-04-021-1/+9
* bpo-40280: Detect if WASM platform supports threading (GH-32243)Christian Heimes2022-04-022-1/+31
* bpo-47131: Speedup AST comparisons in test_unparse by using node traversal (G...Jeremy Kloth2022-04-021-1/+37
* bpo-40280: Emscripten fork_exec now fails early (GH-32224)Christian Heimes2022-04-011-5/+5
* bpo-47089: Avoid test_compileall failures on Windows (GH-32037)Jeremy Kloth2022-04-011-48/+36
* bpo-47186: Replace JUMP_IF_NOT_EXC_MATCH by CHECK_EXC_MATCH + jump (GH-32231)Irit Katriel2022-04-011-42/+43
* bpo-47167: Allow overriding a future compliance check in asyncio.Task (GH-32197)Andrew Svetlov2022-04-011-1/+9
* bpo-40421: Add missing getters for frame object attributes to C-API. (GH-32114)Mark Shannon2022-03-311-0/+20
* bpo-47182: Fix crash by named unicode characters after interpreter reinitiali...Christian Heimes2022-03-311-0/+5
* bpo-47120: Replace the JUMP_ABSOLUTE opcode by the relative JUMP_BACKWARD (GH...Irit Katriel2022-03-312-7/+7
* bpo-46566: Make test_launcher more robust to a variety of installs (GH-32204)Steve Dower2022-03-301-6/+32
* Replace with_traceback() with exception chaining and reraising (GH-32074)Oleg Iarygin2022-03-301-1/+1
* bpo-39622: Interrupt the main asyncio task on Ctrl+C (GH-32105)Andrew Svetlov2022-03-301-1/+58
* bpo-47126: Update to canonical PEP URLs specified by PEP 676 (GH-32124)Hugo van Kemenade2022-03-301-2/+2
* bpo-26120: do not exclude __future__ import in pydoc of the __future__ module...Irit Katriel2022-03-291-0/+17
* bpo-35859: Fix a few long-standing bugs in re engine (GH-12427)Ma Lin2022-03-291-0/+69
* bpo-46566: Add new py.exe launcher implementation (GH-32062)Steve Dower2022-03-281-0/+423
* bpo-47129: Add more informative messages to f-string syntax errors (32127)Maciej Górski2022-03-281-11/+29
* bpo-26120: make pydoc exclude __future__ imports from the data block of the m...Irit Katriel2022-03-281-0/+2
* bpo-45171: Remove tests of deprecated logger.warn(). (GH-32139)Jouke Witteveen2022-03-271-3/+0
* bpo-45171: Fix stacklevel handling in logging. (GH-28287)Jouke Witteveen2022-03-271-1/+12
* bpo-43224: Implement PEP 646 grammar changes (GH-31018)Matthew Rahtz2022-03-265-5/+556
* bpo-47062: Rename factory argument to loop_factory (GH-32113)Andrew Svetlov2022-03-251-1/+1
* bpo-43352: Add a Barrier object in asyncio lib (GH-24903)Duprat2022-03-251-2/+576
* bpo-47118: Fix asyncio.Runner tests error (32117)Andrew Svetlov2022-03-251-1/+1
* bpo-47062: Implement asyncio.Runner context manager (GH-31799)Andrew Svetlov2022-03-241-0/+133
* bpo-47104: Rewrite asyncio.to_thread tests to use IsolatedAsyncioTestCase (GH...Andrew Svetlov2022-03-231-47/+18
* bpo-47101: list only activated algorithms in hashlib.algorithms_available (GH...Christian Heimes2022-03-231-0/+4
* bpo-46829: Deprecate passing a message into Future.cancel() and Task.cancel()...Andrew Svetlov2022-03-233-15/+59
* bpo-2604: Make doctest.DocTestCase reset globs in teardown (GH-31932)Daniël van Noord2022-03-221-0/+16
* bpo-45150: Fix testing under FIPS mode (GH-32046)Christian Heimes2022-03-221-0/+5
* bpo-42885: Optimize search for regular expressions starting with "\A" or "^" ...Serhiy Storchaka2022-03-221-0/+15
* bpo-45997: Fix asyncio.Semaphore re-acquiring order (GH-31910)Andrew Svetlov2022-03-221-0/+25