aboutsummaryrefslogtreecommitdiff
path: root/Objects
AgeCommit message (Expand)Author
2023-05-12[3.11] Fix refleak in super_descr_get (GH-104440)Brandt Bucher
2023-05-12[3.11] GH-94841: Fix usage of Py_ALWAYS_INLINE (GH-104439)Brandt Bucher
2023-05-07[3.11] gh-96670: Raise SyntaxError when parsing NULL bytes (GH-97594) (#104195)Lysandros Nikolaou
2023-05-07[3.11] gh-104018: remove unused format "z" handling in string formatfloat() (...Miss Islington (bot)
2023-05-02[3.11] gh-103590: do not wrap a single exception raised from a try-except* (#...Irit Katriel
2023-05-01[3.11] gh-104018: disallow "z" format specifier in %-format of byte strings (...Miss Islington (bot)
2023-04-24[3.11] gh-99184: Bypass instance attribute access in `repr` of `weakref.ref` ...Miss Islington (bot)
2023-04-11gh-87864: Use correct function definition syntax in the docs (GH-103312)Miss Islington (bot)
2023-03-17gh-102701: Fix overflow in dictobject.c (GH-102750)Miss Islington (bot)
2023-03-04gh-101892: Fix `SystemError` when a callable iterator call exhausts the itera...Miss Islington (bot)
2023-02-26gh-101765: unicodeobject: use Py_XDECREF correctly (GH-102283)Miss Islington (bot)
2023-02-25[3.11] gh-101765: Fix refcount issues in list and unicode pickling (GH-102265...Jelle Zijlstra
2023-02-24[3.11] gh-101765: Fix SystemError / segmentation fault in iter `__reduce__` w...Ionite
2023-02-11[3.11] GH-101696: invalidate type version tag in `_PyStaticType_Dealloc` (GH-...Erlend E. Aasland
2023-02-07[3.11] gh-101072: support default and kw default in PyEval_EvalCodeEx for 3.1...Ɓukasz Langa
2023-02-07[3.11] gh-101266: Revert fix __sizeof__ for subclasses of int (#101638)Mark Dickinson
2023-02-05[3.11] gh-101266: Fix __sizeof__ for subclasses of int (GH-101394) (#101579)Mark Dickinson
2023-01-21[3.11] gh-101037: Fix potential memory underallocation for zeros of int subty...Miss Islington (bot)
2023-01-16gh-101056: Fix memory leak in `formatfloat()` in `bytesobject.c` (GH-101057)Miss Islington (bot)
2023-01-15[3.11] GH-100942: Fix incorrect cast in property_copy(). (GH-100965). (#101008)Nikita Sobolev
2023-01-03[3.11] gh-100637: Fix int and bool __sizeof__ calculation to include the 1 el...Miss Islington (bot)
2022-12-24[3.11] gh-99110: Initialize frame->previous in init_frame to fix segmentation...Bill Fisher
2022-12-12clarify the 4300-digit limit on int-str conversion (GH-100175)Miss Islington (bot)
2022-12-04[3.11] gh-99886: Fix crash when freeing objects with managed dictionaries (#9...Ken Jin
2022-12-01gh-99845: _PyObject_DictPointer(): fix dictoffset cast (#99922)Victor Stinner
2022-11-18gh-99553: fix bug where an ExceptionGroup subclass can wrap a BaseException (...Miss Islington (bot)
2022-11-16gh-99443: `descr_set_trampoline_call` return type should be `int` not `PyObje...Miss Islington (bot)
2022-11-08gh-99181: fix except* on unhashable exceptions (GH-99192)Miss Islington (bot)
2022-11-01gh-98852: Fix subscription of type aliases (GH-98920)Miss Islington (bot)
2022-10-30[3.11] gh-98783: Fix crashes when `str` subclasses are used in `_PyUnicode_Eq...Dennis Sweeney
2022-10-27obmalloc: Remove unused variable. (GH-98770)Miss Islington (bot)
2022-10-06gh-97943: PyFunction_GetAnnotations should return a borrowed reference. (GH-9...Miss Islington (bot)
2022-10-05gh-95196: Disable incorrect pickling of the C implemented classmethod descrip...Miss Islington (bot)
2022-10-04[3.11] GH-97779: Ensure that *all* frame objects are backed by "complete" fra...Miss Islington (bot)
2022-10-01gh-97591: In `Exception.__setstate__()` acquire strong references before call...Miss Islington (bot)
2022-09-28gh-97616: list_resize() checks for integer overflow (GH-97617)Miss Islington (bot)
2022-09-16gh-95778: Mention sys.set_int_max_str_digits() in error message (GH-96874)Miss Islington (bot)
2022-09-13[3.11] gh-96005: Handle WASI ENOTCAPABLE in getpath (GH-96006) (GH-96034) (GH...Christian Heimes
2022-09-08gh-96352: Set AttributeError context in _PyObject_GenericGetAttrWithDict (GH-...Miss Islington (bot)
2022-09-04gh-95778: Correctly pre-check for int-to-str conversion (GH-96537)Miss Islington (bot)
2022-09-02[3.11] gh-95778: CVE-2020-10735: Prevent DoS by very large int() (#96500)Gregory P. Smith
2022-09-01gh-96455: update example in exception_handling_notes.txt to the 3.11RC byteco...Miss Islington (bot)
2022-08-23GH-96187: Prevent _PyCode_GetExtra to return garbage for negative indexes (GH...Miss Islington (bot)
2022-08-22gh-96046: Initialize ht_cached_keys in PyType_Ready() (GH-96047)Miss Islington (bot)
2022-08-11gh-95605: Fix `float(s)` error message when `s` contains only whitespace (GH-...Miss Islington (bot)
2022-08-09GH-92678: Document that you shouldn't be doing your own dictionary offset cal...Miss Islington (bot)
2022-08-04gh-94936: C getters: co_varnames, co_cellvars, co_freevars (GH-95008)Miss Islington (bot)
2022-08-04Revert "[3.11] GH-92678: Expose managed dict clear and visit functions (GH-95...Mark Shannon
2022-08-04GH-92678: Fix tp_dictoffset inheritance. (GH-95596) (GH-95604)Mark Shannon
2022-08-01GH-95150: Use position and exception tables for code hashing and equality (GH...Miss Islington (bot)