aboutsummaryrefslogtreecommitdiff
path: root/Misc
AgeCommit message (Expand)Author
2022-01-06bpo-45923: Handle call events in bytecode (GH-30364)Mark Shannon
2022-01-06Reflect 'context' arg in 'AbstractEventLoop.call_*()' methods (GH-30427)Andrew Svetlov
2022-01-06bpo-46031: add POP_JUMP_IF_NOT_NONE and POP_JUMP_IF_NONE (GH-30019)penguin_wwy
2022-01-06bpo-46006: Revert "bpo-40521: Per-interpreter interned strings (GH-20085)" (G...Victor Stinner
2022-01-05bpo-46266: Add calendar day of week constants to __all__ (GH-30412)Nikita Sobolev
2022-01-05bpo-46269: [Enum] remove special-casing of `__new__` in `EnumType.__dir__` (G...Nikita Sobolev
2022-01-05bpo-46257: Convert statistics._ss() to a single pass algorithm (GH-30403)Raymond Hettinger
2022-01-05bpo-46236: Fix PyFunction_GetAnnotations() returned tuple. (GH-30409)Inada Naoki
2022-01-05bpo-46263: Don't use MULTIARCH on FreeBSD (#30410)Christian Heimes
2022-01-04bpo-46262: [Enum] test error path in `Flag._missing_` (GH-30408)Nikita Sobolev
2022-01-04bpo-46009: Remove GEN_START (GH-30367)Brandt Bucher
2022-01-04bpo-20369: concurrent.futures.wait() now deduplicates futures given a… (GH-...Kumar Aditya
2022-01-04bpo-46240: Correct the error for unclosed parentheses when the tokenizer is n...Pablo Galindo Salgado
2022-01-04bpo-46202: Remove opcode POP_EXCEPT_AND_RERAISE (GH-30302)Irit Katriel
2022-01-04bpo-46239: improve error message when importing `asyncio.windows_events` (GH-...Nikita Sobolev
2022-01-04bpo-46238: reuse `_winapi` constants in `asyncio.windows_events` (GH-30352)Nikita Sobolev
2022-01-03bpo-46110: Restore commit e9898bf153d26059261ffef11f7643ae991e2a4cPablo Galindo Salgado
2022-01-03bpo-44092: Don't reset statements/cursors before rollback (GH-26026)Erlend Egeberg Aasland
2022-01-03Revert "bpo-46110: Add a recursion check to avoid stack overflow in the PEG p...Pablo Galindo Salgado
2022-01-03bpo-46222: posixmodule sendfile FreeBSD's constants updates. (GH-30327)David CARLIER
2022-01-03bpo-40477: macOS Python Launcher app fixes for recent macOS releases (GH-30348)Ned Deily
2022-01-02bpo-46219, 46221: simplify except* implementation following exc_info changes....Irit Katriel
2022-01-02bpo-46196: document method cmd.Cmd.columnize (#30303)Nikita Sobolev
2022-01-02bpo-45615: Add missing test for printing traceback for non-exception. Fix tra...Irit Katriel
2021-12-31bpo-45321: Add missing error codes to module `xml.parsers.expat.errors` (GH-3...Sebastian Pipping
2021-12-30bpo-46109: Separate out files relating to importlib.resources (GH-30160)Jason R. Coombs
2021-12-30bpo-46118: Move importlib.resources to its own package. (#30176)Jason R. Coombs
2021-12-30bpo-46085: Fix iterator cache mechanism of OrderedDict. (GH-30290)Dong-hee Na
2021-12-30bpo-43424: Deprecate `webbrowser.MacOSXOSAScript._name` attribute (GH-30241)Nikita Sobolev
2021-12-29closes docs: remove references to Py_USING_MEMORY_DEBUGGER (GH-30284)Carlos Damazio
2021-12-29bpo-46176: mmap module adding MAP_STACK constant. (GH-30252)David CARLIER
2021-12-28bpo-37295: Speed up math.comb(n, k) for 0 <= k <= n <= 67 (GH-30275)Mark Dickinson
2021-12-27bpo-46055: Speed up binary shifting operators (GH-30044)Xinhang Xu
2021-12-26bpo-43413: Revert changes in set.__init__ (GH-28403)Serhiy Storchaka
2021-12-26bpo-22815: Print unexpected successes in summary in TextTestResult (GH-30138)Serhiy Storchaka
2021-12-26bpo-23819: Fix asyncio tests on python optimized mode (GH-30195)Kumar Aditya
2021-12-26Remove a NEWS entry for bpo-45878 (GH-30259)Serhiy Storchaka
2021-12-25bpo-46032: Check types in singledispatch's register() at declaration time (GH...Serhiy Storchaka
2021-12-24bpo-46120: State that `|` is preferred over `Union` (GH-30222)Nikita Sobolev
2021-12-24bpo-46150: ensure `fakeuser` does not exist in `PosixPathTest.test_expanduser...Nikita Sobolev
2021-12-22bpo-46140: take more Py_buffer arguments as const * (GH-30217)David Hewitt
2021-12-21bpo-46106: Update OpenSSL to 1.1.1m (GH-30211)Kumar Aditya
2021-12-21bpo-46107: ExceptionGroup.subgroup()/split() should copy __note__ to the part...Irit Katriel
2021-12-20bpo-46110: Add a recursion check to avoid stack overflow in the PEG parser (G...Pablo Galindo Salgado
2021-12-19Revert "bpo-46131: add fastpath for PyFloat_Check() (GH-30200)" (GH-30208)Raymond Hettinger
2021-12-19bpo-46131: add fastpath for PyFloat_Check() (#30200)Matti Picus
2021-12-19bpo-46129: Rewrite asyncio.locks tests with IsolatedAsyncioTestCase (GH-30198)Andrew Svetlov
2021-12-19bpo-42413: Replace `concurrent.futures.TimeoutError` and `asyncio.TimeoutErro...Kumar Aditya
2021-12-18bpo-46125: Refactor tests to test traversable API directly. Includes changes ...Jason R. Coombs
2021-12-18bpo-40280: Add Tools/wasm with helpers for cross building (GH-29984)Christian Heimes