summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* [3.12] gh-116714: Handle errors correctly in `PyFloat_GetInfo` (GH-116715) (#...Miss Islington (bot)2024-03-131-8/+13
* [3.12] gh-110819: Fix ‘kind’ may be used uninitialized warning in `longob...Miss Islington (bot)2024-03-121-28/+35
* [3.12] gh-116296: Fix refleak in reduce_newobj() corner case (GH-116297) (#11...Miss Islington (bot)2024-03-041-0/+1
* [3.12] gh-100762: Fix optimization in gen_close (GH-111069) (#115818)Miss Islington (bot)2024-02-221-2/+3
* [3.12] gh-115618: Remove improper Py_XDECREFs in property methods (GH-115619)...Serhiy Storchaka2024-02-171-3/+0
* [3.12] gh-112087: Fix reduce logic for the empty reverse iterator for list (g...Donghee Na2024-02-141-7/+6
* [3.12] gh-113560: Improve docstrings for set.issubset() and set.issuperset() ...Miss Islington (bot)2024-01-271-2/+10
* [3.12] gh-106293: Fix typos in Objects/object_layout.md (GH-106294) (#114158)Miss Islington (bot)2024-01-161-3/+3
* [3.12] Document the `co_lines` method on code objects (#113682) (#113686)Alex Waygood2024-01-031-1/+1
* [3.12] gh-110383: Improve accuracy of str.split() and str.rsplit() docstrings...Hugo van Kemenade2023-12-222-5/+9
* [3.12] gh-112125: Fix None.__ne__(None) returning NotImplemented instead of â...Victor Stinner2023-12-072-1/+7
* [3.12] gh-112625: Protect bytearray from being freed by misbehaving iterator ...Miss Islington (bot)2023-12-041-1/+4
* [3.12] gh-111058: Change coro.cr_frame/gen.gi_frame to be None for a closed c...Miss Islington (bot)2023-12-011-1/+1
* [3.12] gh-109894: Fix initialization of static `MemoryError` in subinterprete...Miss Islington (bot)2023-11-281-4/+0
* [3.12] gh-106931: Intern Statically Allocated Strings Globally (gh-107272) (g...Eric Snow2023-11-271-3/+69
* [3.12] GH-109052: Use the base opcode when comparing code objects (GH-112329)Tian Gao2023-11-231-2/+2
* [3.12] gh-112266: Remove `(if defined)` part from `__dict__` and `__weakref__...Miss Islington (bot)2023-11-191-4/+4
* [3.12] gh-110543: Fix CodeType.replace in presence of comprehensions (GH-1105...Miss Islington (bot)2023-11-081-0/+29
* [3.12] GH-94438: Restore ability to jump over None tests (GH-111243)Miss Islington (bot)2023-10-241-0/+2
* [3.12] gh-110782: Fix crash when TypeVar is constructed with keyword args (GH...Miss Islington (bot)2023-10-121-18/+20
* [3.12] Fix typos in docs and comments (#109619) (#109621)Alex Waygood2023-10-021-1/+1
* [3.12] gh-108732: include comprehension locals in frame.f_locals (GH-109026) ...Miss Islington (bot)2023-09-121-4/+10
* [3.12] gh-108915: Removes extra backslashes in str.split docstring (GH-109044...Shantanu2023-09-082-5/+5
* [3.12] gh-108295: Fix crashes with TypeVar weakrefs (GH-108517) (#108527)Miss Islington (bot)2023-08-271-0/+3
* [3.12] gh-107913: Fix possible losses of OSError error codes (GH-107930) (#10...Miss Islington (bot)2023-08-261-1/+1
* [3.12] gh-86457: Fix signature for code.replace() (GH-23199) (#107744)Serhiy Storchaka2023-08-162-49/+43
* [3.12] gh-107080: Fix Py_TRACE_REFS Crashes Under Isolated Subinterpreters (#...Eric Snow2023-08-161-20/+53
* [3.12] gh-107810: Improve DeprecationWarning for metaclasses with custom tp_n...Miss Islington (bot)2023-08-111-3/+3
* [3.12] gh-107630: Revert "[3.12] gh-107080: Fix Py_TRACE_REFS Crashes Under I...Eric Snow2023-08-051-32/+19
* [3.12] gh-107080: Fix Py_TRACE_REFS Crashes Under Isolated Subinterpreters (g...Miss Islington (bot)2023-08-031-19/+32
* [3.12] gh-106092: Fix use-after-free crash in frame_dealloc (GH-106875) (#107...Miss Islington (bot)2023-08-011-6/+7
* [3.12] gh-102509: Start initializing `ob_digit` of `_PyLongValue` (GH-102510)...Miss Islington (bot)2023-07-311-0/+3
* [3.12] GH-106895: Raise a `ValueError` when attempting to disable events that...Mark Shannon2023-07-281-0/+2
* [3.12] gh-101524: Only Use Public C-API in the _xxsubinterpreters Module (gh-...Miss Islington (bot)2023-07-272-2/+2
* [3.12] gh-102304: Rename _Py_IncRefTotal_DO_NOT_USE_THIS() (GH-107193) (#107199)Miss Islington (bot)2023-07-241-2/+2
* [3.12] gh-105699: Fix an Interned Strings Crasher (gh-106930) (#106963)Miss Islington (bot)2023-07-211-1/+12
* [3.12] gh-105699: Fix a Crasher Related to a Deprecated Global Variable (gh-1...Miss Islington (bot)2023-07-211-4/+7
* [3.12] gh-106719: Fix __annotations__ getter and setter in the type and modul...Miss Islington (bot)2023-07-182-47/+33
* [3.12] gh-105235: Prevent reading outside buffer during mmap.find() (GH-10525...Miss Islington (bot)2023-07-151-2/+19
* [3.12] gh-106403: Restore weakref support for TypeVar and friends (GH-106418)...Miss Islington (bot)2023-07-111-5/+7
* [3.12] gh-105227: Add PyType_GetDict() (GH-105747) (#106600)Miss Islington (bot)2023-07-101-0/+7
* [3.12] gh-105340: include hidden fast-locals in locals() (GH-105715) (#106470)Miss Islington (bot)2023-07-052-8/+64
* [3.12] gh-105486: Change the `repr` of `ParamSpec` list of args in `GenericAl...Miss Islington (bot)2023-07-011-1/+37
* [3.12] Fix possible refleak in CodeType.replace() (GH-106243) (GH-106244)Miss Islington (bot)2023-06-291-0/+1
* [3.12] gh-106033: Get rid of PyDict_GetItem in _PyFunction_FromConstructor (G...Miss Islington (bot)2023-06-291-4/+6
* [3.12] gh-106033: Get rid of new occurrences of PyDict_GetItem and Py… (#10...Serhiy Storchaka2023-06-242-17/+19
* [3.12] gh-103968: PyType_FromMetaclass: Allow metaclasses with tp_new=NULL (G...Miss Islington (bot)2023-06-121-1/+1
* [3.12] gh-105375: Improve error handling in PyUnicode_BuildEncodingMap() (GH-...Miss Islington (bot)2023-06-111-12/+17
* [3.12] Miscellaneous improvements to the typing docs (GH-105529) (#105567)Miss Islington (bot)2023-06-091-65/+80
* [3.12] gh-100227: Lock Around Modification of the Global Allocators State (gh...Miss Islington (bot)2023-06-081-52/+177