summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* [3.11] GH-94438: Restore ability to jump over None tests (GH-111338)Savannah Ostrowski2023-10-251-2/+10
* [3.11] gh-108915: Removes extra backslashes in str.split docstring (GH-109044...Shantanu2023-09-072-5/+5
* [3.11] gh-107913: Fix possible losses of OSError error codes (GH-107930) (GH-...Serhiy Storchaka2023-08-271-1/+1
* [3.11] gh-86457: Fix signature for code.replace() (GH-23199) (GH-107746)Serhiy Storchaka2023-08-092-49/+43
* [3.11] gh-106092: Fix use-after-free crash in frame_dealloc (GH-106875) (#107...Miss Islington (bot)2023-08-011-6/+7
* [3.11] gh-99612: Fix PyUnicode_DecodeUTF8Stateful() for ASCII-only data (GH-9...Serhiy Storchaka2023-07-251-0/+3
* [3.11] gh-106719: Fix __annotations__ getter and setter in the type and modul...Serhiy Storchaka2023-07-182-48/+33
* [3.11] gh-105235: Prevent reading outside buffer during mmap.find() (… (#10...Dennis Sweeney2023-07-151-2/+19
* [3.11] Fix possible refleak in CodeType.replace() (GH-106243) (GH-106245)Miss Islington (bot)2023-06-291-0/+1
* [3.11] gh-106033: Get rid of new occurrences of PyDict_GetItem and Py… (#10...Serhiy Storchaka2023-06-241-16/+15
* [3.11] gh-105375: Improve error handling in PyUnicode_BuildEncodingMap() (GH-...Miss Islington (bot)2023-06-111-12/+17
* [3.11] Fix refleak in super_descr_get (GH-104440)Brandt Bucher2023-05-121-1/+3
* [3.11] GH-94841: Fix usage of Py_ALWAYS_INLINE (GH-104439)Brandt Bucher2023-05-121-1/+1
* [3.11] gh-96670: Raise SyntaxError when parsing NULL bytes (GH-97594) (#104195)Lysandros Nikolaou2023-05-071-10/+19
* [3.11] gh-104018: remove unused format "z" handling in string formatfloat() (...Miss Islington (bot)2023-05-072-5/+0
* [3.11] gh-103590: do not wrap a single exception raised from a try-except* (#...Irit Katriel2023-05-021-1/+6
* [3.11] gh-104018: disallow "z" format specifier in %-format of byte strings (...Miss Islington (bot)2023-05-011-1/+0
* [3.11] gh-99184: Bypass instance attribute access in `repr` of `weakref.ref` ...Miss Islington (bot)2023-04-241-4/+1
* gh-87864: Use correct function definition syntax in the docs (GH-103312)Miss Islington (bot)2023-04-111-4/+4
* gh-102701: Fix overflow in dictobject.c (GH-102750)Miss Islington (bot)2023-03-171-1/+1
* gh-101892: Fix `SystemError` when a callable iterator call exhausts the itera...Miss Islington (bot)2023-03-041-2/+2
* gh-101765: unicodeobject: use Py_XDECREF correctly (GH-102283)Miss Islington (bot)2023-02-261-1/+1
* [3.11] gh-101765: Fix refcount issues in list and unicode pickling (GH-102265...Jelle Zijlstra2023-02-262-1/+11
* [3.11] gh-101765: Fix SystemError / segmentation fault in iter `__reduce__` w...Ionite2023-02-257-23/+66
* [3.11] GH-101696: invalidate type version tag in `_PyStaticType_Dealloc` (GH-...Erlend E. Aasland2023-02-111-0/+2
* [3.11] gh-101072: support default and kw default in PyEval_EvalCodeEx for 3.1...Łukasz Langa2023-02-071-2/+4
* [3.11] gh-101266: Revert fix __sizeof__ for subclasses of int (#101638)Mark Dickinson2023-02-072-8/+9
* [3.11] gh-101266: Fix __sizeof__ for subclasses of int (GH-101394) (#101579)Mark Dickinson2023-02-052-9/+8
* [3.11] gh-101037: Fix potential memory underallocation for zeros of int subty...Miss Islington (bot)2023-01-211-0/+5
* gh-101056: Fix memory leak in `formatfloat()` in `bytesobject.c` (GH-101057)Miss Islington (bot)2023-01-161-1/+3
* [3.11] GH-100942: Fix incorrect cast in property_copy(). (GH-100965). (#101008)Nikita Sobolev2023-01-151-3/+4
* [3.11] gh-100637: Fix int and bool __sizeof__ calculation to include the 1 el...Miss Islington (bot)2023-01-031-1/+4
* [3.11] gh-99110: Initialize frame->previous in init_frame to fix segmentation...Bill Fisher2022-12-241-0/+1
* clarify the 4300-digit limit on int-str conversion (GH-100175)Miss Islington (bot)2022-12-121-2/+2
* [3.11] gh-99886: Fix crash when freeing objects with managed dictionaries (#9...Ken Jin2022-12-041-3/+5
* gh-99845: _PyObject_DictPointer(): fix dictoffset cast (#99922)Victor Stinner2022-12-011-1/+2
* gh-99553: fix bug where an ExceptionGroup subclass can wrap a BaseException (...Miss Islington (bot)2022-11-181-1/+13
* gh-99443: `descr_set_trampoline_call` return type should be `int` not `PyObje...Miss Islington (bot)2022-11-161-1/+1
* gh-99181: fix except* on unhashable exceptions (GH-99192)Miss Islington (bot)2022-11-081-17/+26
* gh-98852: Fix subscription of type aliases (GH-98920)Miss Islington (bot)2022-11-011-0/+7
* [3.11] gh-98783: Fix crashes when `str` subclasses are used in `_PyUnicode_Eq...Dennis Sweeney2022-10-301-2/+2
* obmalloc: Remove unused variable. (GH-98770)Miss Islington (bot)2022-10-271-3/+1
* gh-97943: PyFunction_GetAnnotations should return a borrowed reference. (GH-9...Miss Islington (bot)2022-10-061-2/+5
* gh-95196: Disable incorrect pickling of the C implemented classmethod descrip...Miss Islington (bot)2022-10-051-1/+1
* [3.11] GH-97779: Ensure that *all* frame objects are backed by "complete" fra...Miss Islington (bot)2022-10-052-4/+34
* gh-97591: In `Exception.__setstate__()` acquire strong references before call...Miss Islington (bot)2022-10-021-1/+7
* gh-97616: list_resize() checks for integer overflow (GH-97617)Miss Islington (bot)2022-09-281-2/+8
* gh-95778: Mention sys.set_int_max_str_digits() in error message (GH-96874)Miss Islington (bot)2022-09-161-2/+2
* [3.11] gh-96005: Handle WASI ENOTCAPABLE in getpath (GH-96006) (GH-96034) (GH...Christian Heimes2022-09-131-0/+5
* gh-96352: Set AttributeError context in _PyObject_GenericGetAttrWithDict (GH-...Miss Islington (bot)2022-09-081-0/+2