summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-47080: Use atomic groups to simplify fnmatch (GH-32029)Tim Peters2022-03-212-29/+7
* bpo-433030: Add support of atomic grouping in regular expressions (GH-31982)Serhiy Storchaka2022-03-2111-92/+593
* bpo-46841: Quicken code in-place (GH-31888)Brandt Bucher2022-03-2118-687/+831
* bpo-23691: Protect the re.finditer() iterator from re-entering (GH-32012)Serhiy Storchaka2022-03-213-4/+42
* bpo-46850: Remove _PyEval_CallTracing() function (GH-32019)Victor Stinner2022-03-214-6/+13
* bpo-46850: Remove _PyEval_GetCoroutineOriginTrackingDepth() (GH-32018)Victor Stinner2022-03-215-17/+25
* bpo-46850: Remove _PyEval_SetAsyncGenFinalizer() (GH-32017)Victor Stinner2022-03-214-5/+18
* bpo-38256: Fix binascii.crc32() when inputs are 4+GiB (GH-32000)Gregory P. Smith2022-03-206-33/+89
* bpo-47015: Update test_os from asyncore to asyncio (GH-31876)Oleg Iarygin2022-03-202-157/+81
* bpo-42369: Fix thread safety of zipfile._SharedFile.tell (GH-26974)Kevin Mehall2022-03-202-1/+4
* bpo-46013: Fix confusing kerning on period in docs (GH-29989)jmcb2022-03-201-1/+1
* bpo-47040: improve document of checksum functions (gh-31955)Ma Lin2022-03-194-17/+14
* bpo-46382 dataclass(slots=True) now takes inherited slots into account (GH-31...Arie Bovenberg2022-03-194-9/+77
* bpo-46996: IDLE: Drop workarounds for old Tk versions (GH-31962)Serhiy Storchaka2022-03-193-36/+1
* bpo-47066: Convert a warning about flags not at the start of the regular expr...Serhiy Storchaka2022-03-195-66/+26
* bpo-44544: add textwrap placeholder arg (GH-27671)andrei kulakov2022-03-191-2/+3
* bpo-39394: Improve warning message in the re module (GH-31988)Serhiy Storchaka2022-03-193-4/+11
* bpo-47057: Use FASTCALL convention for FutureIter.throw() (GH-31973)Andrew Svetlov2022-03-192-8/+14
* bpo-47022: Document asynchat, asyncore and smtpd removals in 3.12 (GH-31891)Hugo van Kemenade2022-03-189-4/+23
* bpo-43224: Add TypeVarTuple.__name__ (GH-31954)Jelle Zijlstra2022-03-182-11/+8
* bpo-47037: Test debug builds on Windows in CI so that native assertions are n...Steve Dower2022-03-181-4/+4
* [doc] Some more make suspicious false positives. (GH-31977)Julien Palard2022-03-181-0/+2
* bpo-46968: Check for 'sys/auxv.h' in the configure script (GH-31961)Pablo Galindo Salgado2022-03-185-5/+11
* bpo-47037: Don't test for strftime('%4Y') on Windows (GH-31945)Christian Heimes2022-03-182-4/+9
* bpo-45786: Remove _PyFrame_Fini() and _PyFrame_DebugMallocStats() (GH-31874)Victor Stinner2022-03-185-20/+0
* summarize_stats.py: add pairs by opcode (GH-31957)Dennis Sweeney2022-03-181-9/+44
* bpo-45413: Define "posix_venv", "nt_venv" and "venv" sysconfig installation s...Miro HronĨok2022-03-188-16/+211
* bpo-40296: Fix supporting generic aliases in pydoc (GH-30253)Serhiy Storchaka2022-03-184-9/+84
* bpo-46421: Fix unittest filename evaluation when called as a module (GH-30654)Bader Zaidan2022-03-174-1/+16
* bpo-47005: Improve performance of bytearray_repeat and bytearray_irepeat (GH-...Pieter Eendebak2022-03-172-6/+23
* bpo-34790: Remove passing coroutine objects to asyncio.wait() (GH-31964)Andrew Svetlov2022-03-174-101/+15
* bpo-46030: socket module add couple of FreeBSD constants. (GH-30018)David CARLIER2022-03-173-0/+25
* Fix whitespace error in setup.py (GH-31960)Erlend Egeberg Aasland2022-03-171-1/+1
* bpo-47042: Fix testing the HTML output in test_pydoc (GH-31959)Serhiy Storchaka2022-03-171-6/+10
* Use low bit of LOAD_GLOBAL's oparg to indicate whether it should push an addi...Mark Shannon2022-03-177-196/+212
* bpo-40280: Skip more tests on Emscripten (GH-31947)Christian Heimes2022-03-1716-8/+63
* bpo-46996: Remove support of Tcl/Tk < 8.5.12 (GH-31839)Serhiy Storchaka2022-03-1710-216/+90
* Do not run test_gdb when gdb embeds Python 2. (GH-31956)Inada Naoki2022-03-171-0/+3
* bpo-46981: Remove typing._TypingEmpty (GH-31836)Serhiy Storchaka2022-03-173-15/+5
* bpo-44859: Raise more accurate exceptions in `sqlite3` (GH-27695)Erlend Egeberg Aasland2022-03-176-14/+45
* bpo-46480: add typing.assert_type (GH-30843)Jelle Zijlstra2022-03-174-1/+60
* bpo-22859: deprecate unittest.main.TestProgram.usageExit (GH-30293)Carlos Damazio2022-03-172-0/+4
* bpo-47039: Normalize repr() of asyncio future and task objects (GH-31950)Andrew Svetlov2022-03-177-118/+42
* bpo-47038: Increase a test timeout for slow CI machines (GH-31951)Andrew Svetlov2022-03-171-1/+1
* bpo-47038: Rewrite missed asyncio.wait_for test to use IsolatedAnsyncioTestCa...Andrew Svetlov2022-03-162-26/+24
* bpo-47038: Rewrite asyncio.wait_for test to use IsolatedAsyncioTestCase (GH-3...Andrew Svetlov2022-03-163-313/+270
* bpo-45979: Fix Tkinter tests with old Tk (>= 8.5.12) (GH-31938)Serhiy Storchaka2022-03-162-3/+5
* bpo-46769: Improve documentation for `typing.TypeVar` (GH-31712)Alex Waygood2022-03-161-21/+55
* Fix some Windows release build script issues (GH-31931)Steve Dower2022-03-165-59/+85
* Rewrite asyncio.Queue tests with IsolatedAsyncioTestCace (#31935)Andrew Svetlov2022-03-161-324/+179