summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-46161: Fix bug in starunpack_helper in compile.c (GH-30235)zq19972022-01-173-1/+23
* bpo-40066: [Enum] fix tests (GH-30643)Ethan Furman2022-01-173-11/+11
* bpo-46405: fix msvc compiler warnings (GH-30627)Kumar Aditya2022-01-171-1/+1
* bpo-40066: [Enum] skip failing doc test (GH-30637)Kumar Aditya2022-01-1714-2004/+2070
* bpo-44133: Skip PyThread_get_thread_native_id() if not available (GH-30636)Victor Stinner2022-01-171-1/+7
* bpo-13886: Skip PTY non-ASCII tests if readline is loaded (GH-30631)Victor Stinner2022-01-172-2/+17
* Revert "bpo-40066: [Enum] update str() and format() output (GH-30582)" (GH-3...Victor Stinner2022-01-1714-2070/+2004
* bpo-40280: Change subprocess imports for cleaner error on wasm32 (GH-30620)Christian Heimes2022-01-172-8/+11
* bpo-40280: Add requires_fork test helper (GH-30622)Christian Heimes2022-01-1610-18/+34
* bpo-46361: Fix "small" `int` caching (GH-30583)Brandt Bucher2022-01-165-1/+24
* bpo-46386: improve `test_typing:test_immutability_by_copy_and_pickle` (GH-30613)Nikita Sobolev2022-01-161-8/+16
* bpo-40066: [Enum] update str() and format() output (GH-30582)Ethan Furman2022-01-1614-2004/+2070
* bpo-46387: test all pickle protos in `test_field_descriptor` in `test_collect...Nikita Sobolev2022-01-161-6/+8
* bpo-46388: Test NotImplemented code path for functools.total_ordering (GH-30616)Russel Webber2022-01-151-0/+67
* bpo-46258: Streamline isqrt fast path (#30333)Mark Dickinson2022-01-152-14/+45
* bpo-46383: Fix signature of zoneinfo module_free function (GH-30607)Christian Heimes2022-01-152-1/+3
* bpo-20281, bpo-29964: update datetime docs to refer %z and %Z to a pre-existi...Hugo van Kemenade2022-01-141-7/+6
* bpo-46242: [Enum] better error message for extending `Enum` with members (GH-...Nikita Sobolev2022-01-143-5/+7
* Merge remote-tracking branch 'upstream/main'Pablo Galindo2022-01-1433-732/+918
|\
| * bpo-46380: Apply tests to both C and Python version (GH-30606)Nikita Sobolev2022-01-141-3/+3
| * bpo-45569: Change PYLONG_BITS_IN_DIGIT default to 30 (GH-30497)Mark Dickinson2022-01-146-16/+22
| * bpo-40280: Block more syscalls that are causing crashes in tests (GH-30601)Christian Heimes2022-01-141-3/+9
| * bpo-23183: Document the timeit output (GH-30359)Hugo van Kemenade2022-01-141-0/+7
| * bpo-46362: Ensure abspath() tests pass through environment variables to subpr...neonene2022-01-141-1/+2
| * bpo-40280: Build WASM stdlib bundle and more modules for node (GH-30597)Christian Heimes2022-01-143-24/+55
| * bpo-46280: Fix tracemalloc_copy_domain() (GH-30591)Victor Stinner2022-01-141-0/+3
| * bpo-45953: Statically initialize all the non-object PyInterpreterState fields...Eric Snow2022-01-145-26/+40
| * bpo-45953: Statically initialize all the PyThreadState fields we can. (gh-30590)Eric Snow2022-01-145-24/+41
| * bpo-46362: Ensure ntpath.abspath() uses the Windows API correctly (GH-30571)neonene2022-01-138-42/+114
| * Statically initialize _PyRuntimeState fields. (gh-30588)Eric Snow2022-01-132-10/+11
| * bpo-46370: Move the static initializer for _PyRuntime to its own header file....Eric Snow2022-01-139-583/+611
| * bpo-40479: Fix typo, flag must be set for OpenSSL < 3.0.0 (GH-30584)Christian Heimes2022-01-131-1/+1
* | Post 3.11.0a4Pablo Galindo2022-01-141-1/+1
* | Python 3.11.0a4v3.11.0a4Pablo Galindo2022-01-13119-308/+1339
|/
* bpo-46070: _PyGC_Fini() untracks objects (GH-30577)Victor Stinner2022-01-132-0/+29
* bpo-44133: Link Python executable with object files (GH-30556)Victor Stinner2022-01-136-85/+131
* bpo-46355: Document PyFrameObject and PyThreadState changes (GH-30558)Victor Stinner2022-01-131-0/+104
* bpo-46358: modernize `test_asyncio` (GH-30562)Nikita Sobolev2022-01-133-39/+17
* bpo-46359: Modernize `test_typing` by removing checks for EOL Python versions...Nikita Sobolev2022-01-131-20/+9
* bpo-46328: Add sys.exception() (GH-30514)Irit Katriel2022-01-137-18/+146
* bpo-46344: Fix trace bug in else of try and try-star blocks (GH-30544)Irit Katriel2022-01-133-32/+56
* bpo-40479: Fix hashlib's usedforsecurity for OpenSSL 3.0.0 (GH-30455)Christian Heimes2022-01-139-249/+358
* bpo-46315: Add ifdef HAVE_ feature checks for WASI compatibility (GH-30507)Christian Heimes2022-01-1314-14/+90
* bpo-46345: Add a test case for implicit `Optional` class attribute (GH-30535)Nikita Sobolev2022-01-121-0/+6
* bpo-45953: Statically allocate the main interpreter (and initial thread state...Eric Snow2022-01-128-34/+115
* bpo-46342: make @typing.final introspectable (GH-30530)Jelle Zijlstra2022-01-124-1/+93
* bpo-40280: Allow to compile _testcapi as builtin module (GH-30559)Christian Heimes2022-01-124-6/+7
* bpo-46020: Optimize long_pow for the common case (GH-30555)Tim Peters2022-01-121-6/+13
* bpo-46348: modernize `test_typing` (GH-30547)Nikita Sobolev2022-01-122-64/+14
* bpo-40280: Add --with-emscripten-target to build for browser or node (GH-30552)Christian Heimes2022-01-127-22/+164