summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
...
| * 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
* bpo-46347: Yet another fix in the erorr path of PyEval_EvalCodeEx (#30554)Yury Selivanov2022-01-121-1/+0
* bpo-46347: Fix PyEval_EvalCodeEx to correctly cleanup in error paths (#30551)Yury Selivanov2022-01-111-13/+9
* bpo-46303: Fix fileutils.h compiler warnings (GH-30550)Victor Stinner2022-01-112-1/+11
* bpo-46347: Fix memory leak in PyEval_EvalCodeEx. (#30546)Yury Selivanov2022-01-112-7/+1
* bpo-46307: Add string.Template.get_identifiers() method (GH-30493)Ben Kehoe2022-01-114-0/+100
* bpo-45953: Statically allocate and initialize global bytes objects. (gh-30096)Eric Snow2022-01-115-96/+294
* [doc] Add license_url for python-docs-theme 2022.1. (GH-30527)Julien Palard2022-01-112-2/+3
* bpo-46339: Fix crash in the parser when computing error text for multi-line f...Pablo Galindo Salgado2022-01-113-2/+18
* closes bpo-46253: Change Py_UNICODE to Py_UCS4 in the C API docs to match the...Julian Gilbey2022-01-111-17/+17
* Remove unused `Any` from `Concatenate` example in typing docs (GH-30516)Michael Oliver2022-01-111-1/+1
* News item for issue 46314. (GH-30515)Mark Shannon2022-01-111-0/+2
* bpo-46331: Do not set line number of instruction storing doc-string. (GH-30518)Mark Shannon2022-01-113-0/+22
* bpo-46303: Move fileutils.h private functions to internal C API (GH-30484)Victor Stinner2022-01-1113-258/+289
* bpo-46310: simplify `for` loop in `asyncio/windows_events` (GH-30334)Nikita Sobolev2022-01-111-1/+1
* bpo-46205: exit if no workers are alive in runtest_mp (GH-30470)Sam Gross2022-01-112-8/+11
* bpo-46244: Remove __slots__ from typing.TypeVar, .ParamSpec (#30444)Arie Bovenberg2022-01-102-6/+2
* bpo-45331: [Enum] add rule to docs that mixin type must be subclassable (GH-3...Nikita Sobolev2022-01-101-4/+7
* bpo-46327: [Enum] remove skipped tests (GH-30512)Nikita Sobolev2022-01-101-11/+0
* bpo-46301: [Enum] fix refleak tests (GH30510)Nikita Sobolev2022-01-101-44/+58
* bpo-46332: use raise..from instead of assigning __cause__ and raising (GH-30517)Irit Katriel2022-01-101-5/+2
* bpo-46314: Remove extra RESUME when compiling a lamdba. (GH-30513)Mark Shannon2022-01-102-144/+157
* bpo-46270: Describe the `in` and `not in` operators as membership tests. (GH-...Raymond Hettinger2022-01-101-4/+6
* bpo-23882: unittest: Drop PEP 420 support from discovery. (GH-29745)Inada Naoki2022-01-105-78/+44
* bpo-46272: Fix two heading comments in python.gram (GH-30499)Mark Dickinson2022-01-091-3/+3
* bpo-37295: Use constant-time comb() and perm() for larger n depending on k (G...Serhiy Storchaka2022-01-092-134/+190
* bpo-40280: Disable epoll_create in Emscripten config.site (GH-30494)Ethan Smith2022-01-091-1/+1