summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-47104: Rewrite asyncio.to_thread tests to use IsolatedAsyncioTestCase (GH...Andrew Svetlov2022-03-232-47/+20
* bpo-47101: list only activated algorithms in hashlib.algorithms_available (GH...Christian Heimes2022-03-233-1/+20
* bpo-31582: Created a new documentation section describing sys.path initializa...Russel Webber2022-03-2310-29/+128
* bpo-47086: Remove dead link to old CHM documentation (GH-32075)Steve Dower2022-03-231-4/+0
* bpo-46712: Do not Regen Deep-Frozen Modules before Generating Global Objects ...Eric Snow2022-03-232-12/+36
* bpo-46541: Add a Comment About When to Use _Py_DECLARE_STR(). (gh-32063)Eric Snow2022-03-231-0/+10
* bpo-46829: Deprecate passing a message into Future.cancel() and Task.cancel()...Andrew Svetlov2022-03-239-17/+106
* Correctly document class instead of function (GH-32016)slateny2022-03-231-4/+4
* bpo-46836: Add Doc/c-api/frame.rst (GH-32051)Victor Stinner2022-03-235-47/+51
* [doc] configparser: avoid inline comments. (GH-31247)Julien Palard2022-03-231-2/+4
* bpo-42238: [doc] Some lines moved in rst, but had hardcoded lineno in susp-ig...Julien Palard2022-03-231-6/+6
* bpo-47012: speed up iteration of bytes and bytearray (GH-31867)Kumar Aditya2022-03-234-9/+13
* bpo-46864: Suppress deprecation warnings for ob_shash. (GH-32042)Inada Naoki2022-03-231-1/+4
* Fix typo in Path.iterdir docs (GH-31822)Matt Williams2022-03-231-1/+1
* bpo-43166: Disable ceval.c optimizations for Windows debug builds (GH-32023)neonene2022-03-233-16/+2
* bpo-2604: Make doctest.DocTestCase reset globs in teardown (GH-31932)Daniƫl van Noord2022-03-223-0/+20
* bpo-32033: Finalize WASI configure options (GH-32053)Christian Heimes2022-03-224-4/+64
* bpo-46315: Use fopencookie() to avoid dup() in _PyTokenizer_FindEncodingFilen...Christian Heimes2022-03-221-6/+34
* 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-223-0/+25
* bpo-45997: Fix asyncio.Semaphore re-acquiring order (GH-31910)Andrew Svetlov2022-03-223-6/+36
* bpo-47076: Make asyncio.Queue stable on slow test boxes (GH-32040)Andrew Svetlov2022-03-221-21/+11
* bpo-47045: Remove `f_state` field (GH-31963)Mark Shannon2022-03-229-220/+260
* bpo-47084: Clear Unicode cached representations on finalization (GH-32032)Jeremy Kloth2022-03-225-18/+78
* bpo-46838: Syntax error improvements for function definitions (GH-31590)Pablo Galindo Salgado2022-03-224-876/+3401
* bpo-40280: Skip socket, fork, subprocess tests on Emscripten (GH-31986)Christian Heimes2022-03-2252-23/+238
* bpo-28080: Add support for the fallback encoding in ZIP files (GH-32007)Serhiy Storchaka2022-03-225-11/+211
* bpo-47081: Replace "qualifiers" with "quantifiers" in the re module documenta...Serhiy Storchaka2022-03-225-21/+21
* bpo-45150: Add hashlib.file_digest() for efficient file hashing (GH-31930)Christian Heimes2022-03-224-1/+145
* bpo-47086: Remove .chm from Windows installer and add HTML docs (GH-32038)Steve Dower2022-03-2219-105/+79
* bpo-44336: Prevent tests hanging on child process handles on Windows (GH-26578)Jeremy Kloth2022-03-222-185/+117
* bpo-47061: document module deprecations due to PEP 594 (GH-31984)Brett Cannon2022-03-2127-22/+97
* Fix typo in pycore_bytesobject.h (GH-31914)jonasdlindner2022-03-211-1/+1
* bpo-12029: [doc] clarify that except does not match virtual subclasses of the...Irit Katriel2022-03-212-5/+7
* bpo-47067: Optimize calling GenericAlias objects (GH-31996)penguin_wwy2022-03-214-7/+35
* 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