summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Expand)AuthorAgeFilesLines
* 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
* bpo-46219, 46221: simplify except* implementation following exc_info changes....Irit Katriel2022-01-021-0/+1
* bpo-46196: document method cmd.Cmd.columnize (#30303)Nikita Sobolev2022-01-021-0/+1
* bpo-45615: Add missing test for printing traceback for non-exception. Fix tra...Irit Katriel2022-01-021-0/+1
* bpo-45321: Add missing error codes to module `xml.parsers.expat.errors` (GH-3...Sebastian Pipping2021-12-311-0/+1
* bpo-46109: Separate out files relating to importlib.resources (GH-30160)Jason R. Coombs2021-12-311-0/+2
* bpo-46118: Move importlib.resources to its own package. (#30176)Jason R. Coombs2021-12-311-0/+1
* bpo-46085: Fix iterator cache mechanism of OrderedDict. (GH-30290)Dong-hee Na2021-12-301-0/+1
* bpo-43424: Deprecate `webbrowser.MacOSXOSAScript._name` attribute (GH-30241)Nikita Sobolev2021-12-301-0/+1
* closes docs: remove references to Py_USING_MEMORY_DEBUGGER (GH-30284)Carlos Damazio2021-12-291-6/+3
* bpo-46176: mmap module adding MAP_STACK constant. (GH-30252)David CARLIER2021-12-291-0/+1
* bpo-37295: Speed up math.comb(n, k) for 0 <= k <= n <= 67 (GH-30275)Mark Dickinson2021-12-281-0/+1
* bpo-46055: Speed up binary shifting operators (GH-30044)Xinhang Xu2021-12-272-0/+3
* bpo-43413: Revert changes in set.__init__ (GH-28403)Serhiy Storchaka2021-12-262-1/+2
* bpo-22815: Print unexpected successes in summary in TextTestResult (GH-30138)Serhiy Storchaka2021-12-261-0/+2
* bpo-23819: Fix asyncio tests on python optimized mode (GH-30195)Kumar Aditya2021-12-261-0/+1
* Remove a NEWS entry for bpo-45878 (GH-30259)Serhiy Storchaka2021-12-261-10/+0
* bpo-46032: Check types in singledispatch's register() at declaration time (GH...Serhiy Storchaka2021-12-251-0/+5
* bpo-46120: State that `|` is preferred over `Union` (GH-30222)Nikita Sobolev2021-12-241-0/+1
* bpo-46150: ensure `fakeuser` does not exist in `PosixPathTest.test_expanduser...Nikita Sobolev2021-12-241-0/+2
* bpo-46140: take more Py_buffer arguments as const * (GH-30217)David Hewitt2021-12-221-0/+1
* bpo-46106: Update OpenSSL to 1.1.1m (GH-30211)Kumar Aditya2021-12-221-0/+2
* bpo-46107: ExceptionGroup.subgroup()/split() should copy __note__ to the part...Irit Katriel2021-12-211-0/+1
* bpo-46110: Add a recursion check to avoid stack overflow in the PEG parser (G...Pablo Galindo Salgado2021-12-201-0/+2
* Revert "bpo-46131: add fastpath for PyFloat_Check() (GH-30200)" (GH-30208)Raymond Hettinger2021-12-191-2/+0
* bpo-46131: add fastpath for PyFloat_Check() (#30200)Matti Picus2021-12-191-0/+2
* bpo-46129: Rewrite asyncio.locks tests with IsolatedAsyncioTestCase (GH-30198)Andrew Svetlov2021-12-191-0/+2
* bpo-42413: Replace `concurrent.futures.TimeoutError` and `asyncio.TimeoutErro...Kumar Aditya2021-12-191-0/+2