summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-47000: Make `io.text_encoding()` respects UTF-8 mode (GH-32003)Inada Naoki2022-04-043-6/+21
* 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-033-25/+66
* 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-0210-2171/+2217
* 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-012-7/+13
* 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-013-44/+46
* bpo-47167: Allow overriding a future compliance check in asyncio.Task (GH-32197)Andrew Svetlov2022-04-012-2/+14
* 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
* Remove unnecessary registration of weakref.WeakSet to _collections_abc.Set (G...Géry Ogam2022-03-311-1/+0
* bpo-47120: Replace the JUMP_ABSOLUTE opcode by the relative JUMP_BACKWARD (GH...Irit Katriel2022-03-315-13/+18
* 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-304-12/+8
* bpo-39622: Interrupt the main asyncio task on Ctrl+C (GH-32105)Andrew Svetlov2022-03-302-2/+94
* bpo-34861: Make cumtime the default sorting key for cProfile (GH-31929)Daniël van Noord2022-03-301-1/+1
* bpo-47126: Update to canonical PEP URLs specified by PEP 676 (GH-32124)Hugo van Kemenade2022-03-307-10/+10
* bpo-26120: do not exclude __future__ import in pydoc of the __future__ module...Irit Katriel2022-03-292-1/+18
* bpo-33178: Add BigEndianUnion, LittleEndianUnion classes to ctypes (GH-25480)Dave Goncalves2022-03-293-36/+103
* bpo-14265: Adds fully qualified test name to unittest output (GH-32138)Sam Ezeh2022-03-292-35/+41
* 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-27929: resolve names only for AF_INET/AF_INET6 with asyncio (GH-32131)Vincent Bernat2022-03-281-1/+2
* 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-282-0/+9
* Fix typo in the sqlite3 docs (GH-31915)Jonathan2022-03-281-1/+1
* bpo-47127: Specialize calls for fastcall c methods with keywords (GH-32125)Kumar Aditya2022-03-271-0/+1
* bpo-45171: Remove tests of deprecated logger.warn(). (GH-32139)Jouke Witteveen2022-03-272-4/+1
* bpo-45171: Fix stacklevel handling in logging. (GH-28287)Jouke Witteveen2022-03-272-33/+47
* bpo-43224: Implement PEP 646 grammar changes (GH-31018)Matthew Rahtz2022-03-267-12/+569
* bpo-47062: Rename factory argument to loop_factory (GH-32113)Andrew Svetlov2022-03-252-6/+6
* bpo-43352: Add a Barrier object in asyncio lib (GH-24903)Duprat2022-03-253-5/+737
* 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-243-69/+258
* bpo-46480: rephrase typing.assert_type docs (GH-32069)Shantanu2022-03-241-1/+1
* 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-235-15/+70
* bpo-2604: Make doctest.DocTestCase reset globs in teardown (GH-31932)Daniël van Noord2022-03-222-0/+19
* 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-222-6/+35
* bpo-47076: Make asyncio.Queue stable on slow test boxes (GH-32040)Andrew Svetlov2022-03-221-21/+11
* bpo-47084: Clear Unicode cached representations on finalization (GH-32032)Jeremy Kloth2022-03-222-18/+32
* bpo-46838: Syntax error improvements for function definitions (GH-31590)Pablo Galindo Salgado2022-03-221-0/+204
* bpo-40280: Skip socket, fork, subprocess tests on Emscripten (GH-31986)Christian Heimes2022-03-2247-18/+151