summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* bpo-46070: _PyGC_Fini() untracks objects (GH-30577)Victor Stinner2022-01-131-0/+5
* bpo-44133: Link Python executable with object files (GH-30556)Victor Stinner2022-01-132-0/+7
* bpo-46328: Add sys.exception() (GH-30514)Irit Katriel2022-01-131-0/+1
* bpo-40479: Fix hashlib's usedforsecurity for OpenSSL 3.0.0 (GH-30455)Christian Heimes2022-01-131-0/+2
* bpo-46315: Add ifdef HAVE_ feature checks for WASI compatibility (GH-30507)Christian Heimes2022-01-131-0/+2
* bpo-45953: Statically allocate the main interpreter (and initial thread state...Eric Snow2022-01-121-0/+4
* bpo-46342: make @typing.final introspectable (GH-30530)Jelle Zijlstra2022-01-121-0/+2
* bpo-40280: Add --with-emscripten-target to build for browser or node (GH-30552)Christian Heimes2022-01-121-0/+2
* bpo-46347: Fix memory leak in PyEval_EvalCodeEx. (#30546)Yury Selivanov2022-01-111-0/+1
* bpo-46307: Add string.Template.get_identifiers() method (GH-30493)Ben Kehoe2022-01-111-0/+1
* bpo-46339: Fix crash in the parser when computing error text for multi-line f...Pablo Galindo Salgado2022-01-111-0/+3
* 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-111-0/+2
* bpo-46205: exit if no workers are alive in runtest_mp (GH-30470)Sam Gross2022-01-111-0/+1
* bpo-46244: Remove __slots__ from typing.TypeVar, .ParamSpec (#30444)Arie Bovenberg2022-01-101-0/+2
* bpo-23882: unittest: Drop PEP 420 support from discovery. (GH-29745)Inada Naoki2022-01-101-0/+2
* bpo-46306: simplify `CodeType` attribute access in `doctest.py` (GH-30481)Nikita Sobolev2022-01-081-0/+2
* bpo-46235: Do all ref-counting at once during list/tuple multiplication (GH-3...Dennis Sweeney2022-01-081-0/+1
* bpo-46237: Fix the line number of tokenizer errors inside f-strings (GH-30463)Pablo Galindo Salgado2022-01-081-0/+2
* bpo-46217: Revert use of Windows constant that is newer than what we support ...Steve Dower2022-01-081-0/+2
* bpo-46297: Fix interpreter crash on startup with multiple PythonPaths set in ...Daniel2022-01-072-0/+3
* bpo-46296: [Enum] add a test for missing `value` recovery (GH-30458)Nikita Sobolev2022-01-071-0/+2
* bpo-46289: Make conversion of FormattedValue not optional on ASDL (GH-30467)Batuhan Taskaya2022-01-071-0/+2
* bpo-46070: Fix asyncio initialisation guard (GH-30423)Erlend Egeberg Aasland2022-01-071-0/+2
* bpo-45723: Fix detection of epoll (#30449)Christian Heimes2022-01-071-0/+1
* bpo-41011: venv -- add more variables to pyvenv.cfg (GH-30382)andrei kulakov2022-01-071-0/+3
* bpo-46208: Fix normalization of relative paths in _Py_normpath()/os.path.norm...neonene2022-01-061-0/+1
* bpo-46263: Do not ever expect "use_frozen_modules" to be -1. (gh-30438)Eric Snow2022-01-061-0/+2
* bpo-46263: FreeBSD 14.0 jemalloc workaround for junk bytes of freed memory (G...Christian Heimes2022-01-061-0/+2
* bpo-45923: Handle call events in bytecode (GH-30364)Mark Shannon2022-01-061-0/+3
* Reflect 'context' arg in 'AbstractEventLoop.call_*()' methods (GH-30427)Andrew Svetlov2022-01-061-0/+2
* bpo-46031: add POP_JUMP_IF_NOT_NONE and POP_JUMP_IF_NONE (GH-30019)penguin_wwy2022-01-061-0/+1
* bpo-46006: Revert "bpo-40521: Per-interpreter interned strings (GH-20085)" (G...Victor Stinner2022-01-061-0/+5
* bpo-46266: Add calendar day of week constants to __all__ (GH-30412)Nikita Sobolev2022-01-051-0/+4
* bpo-46269: [Enum] remove special-casing of `__new__` in `EnumType.__dir__` (G...Nikita Sobolev2022-01-051-0/+1
* bpo-46257: Convert statistics._ss() to a single pass algorithm (GH-30403)Raymond Hettinger2022-01-051-0/+4
* bpo-46236: Fix PyFunction_GetAnnotations() returned tuple. (GH-30409)Inada Naoki2022-01-051-0/+1
* bpo-46263: Don't use MULTIARCH on FreeBSD (#30410)Christian Heimes2022-01-051-0/+1
* bpo-46262: [Enum] test error path in `Flag._missing_` (GH-30408)Nikita Sobolev2022-01-051-0/+1
* bpo-46009: Remove GEN_START (GH-30367)Brandt Bucher2022-01-041-0/+1
* bpo-20369: concurrent.futures.wait() now deduplicates futures given a… (GH-...Kumar Aditya2022-01-041-0/+1
* bpo-46240: Correct the error for unclosed parentheses when the tokenizer is n...Pablo Galindo Salgado2022-01-041-0/+3
* bpo-46202: Remove opcode POP_EXCEPT_AND_RERAISE (GH-30302)Irit Katriel2022-01-041-0/+2
* bpo-46239: improve error message when importing `asyncio.windows_events` (GH-...Nikita Sobolev2022-01-041-0/+2
* bpo-46238: reuse `_winapi` constants in `asyncio.windows_events` (GH-30352)Nikita Sobolev2022-01-041-0/+1
* bpo-46110: Restore commit e9898bf153d26059261ffef11f7643ae991e2a4cPablo Galindo Salgado2022-01-031-0/+2
* bpo-44092: Don't reset statements/cursors before rollback (GH-26026)Erlend Egeberg Aasland2022-01-031-0/+3
* Revert "bpo-46110: Add a recursion check to avoid stack overflow in the PEG p...Pablo Galindo Salgado2022-01-031-2/+0
* bpo-46222: posixmodule sendfile FreeBSD's constants updates. (GH-30327)David CARLIER2022-01-031-0/+1
* bpo-40477: macOS Python Launcher app fixes for recent macOS releases (GH-30348)Ned Deily2022-01-031-0/+2