index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Objects
Commit message (
Expand
)
Author
Age
Files
Lines
*
[3.11] GH-94438: Restore ability to jump over None tests (GH-111338)
Savannah Ostrowski
2023-10-25
1
-2/+10
*
[3.11] gh-108915: Removes extra backslashes in str.split docstring (GH-109044...
Shantanu
2023-09-07
2
-5/+5
*
[3.11] gh-107913: Fix possible losses of OSError error codes (GH-107930) (GH-...
Serhiy Storchaka
2023-08-27
1
-1/+1
*
[3.11] gh-86457: Fix signature for code.replace() (GH-23199) (GH-107746)
Serhiy Storchaka
2023-08-09
2
-49/+43
*
[3.11] gh-106092: Fix use-after-free crash in frame_dealloc (GH-106875) (#107...
Miss Islington (bot)
2023-08-01
1
-6/+7
*
[3.11] gh-99612: Fix PyUnicode_DecodeUTF8Stateful() for ASCII-only data (GH-9...
Serhiy Storchaka
2023-07-25
1
-0/+3
*
[3.11] gh-106719: Fix __annotations__ getter and setter in the type and modul...
Serhiy Storchaka
2023-07-18
2
-48/+33
*
[3.11] gh-105235: Prevent reading outside buffer during mmap.find() (… (#10...
Dennis Sweeney
2023-07-15
1
-2/+19
*
[3.11] Fix possible refleak in CodeType.replace() (GH-106243) (GH-106245)
Miss Islington (bot)
2023-06-29
1
-0/+1
*
[3.11] gh-106033: Get rid of new occurrences of PyDict_GetItem and Py… (#10...
Serhiy Storchaka
2023-06-24
1
-16/+15
*
[3.11] gh-105375: Improve error handling in PyUnicode_BuildEncodingMap() (GH-...
Miss Islington (bot)
2023-06-11
1
-12/+17
*
[3.11] Fix refleak in super_descr_get (GH-104440)
Brandt Bucher
2023-05-12
1
-1/+3
*
[3.11] GH-94841: Fix usage of Py_ALWAYS_INLINE (GH-104439)
Brandt Bucher
2023-05-12
1
-1/+1
*
[3.11] gh-96670: Raise SyntaxError when parsing NULL bytes (GH-97594) (#104195)
Lysandros Nikolaou
2023-05-07
1
-10/+19
*
[3.11] gh-104018: remove unused format "z" handling in string formatfloat() (...
Miss Islington (bot)
2023-05-07
2
-5/+0
*
[3.11] gh-103590: do not wrap a single exception raised from a try-except* (#...
Irit Katriel
2023-05-02
1
-1/+6
*
[3.11] gh-104018: disallow "z" format specifier in %-format of byte strings (...
Miss Islington (bot)
2023-05-01
1
-1/+0
*
[3.11] gh-99184: Bypass instance attribute access in `repr` of `weakref.ref` ...
Miss Islington (bot)
2023-04-24
1
-4/+1
*
gh-87864: Use correct function definition syntax in the docs (GH-103312)
Miss Islington (bot)
2023-04-11
1
-4/+4
*
gh-102701: Fix overflow in dictobject.c (GH-102750)
Miss Islington (bot)
2023-03-17
1
-1/+1
*
gh-101892: Fix `SystemError` when a callable iterator call exhausts the itera...
Miss Islington (bot)
2023-03-04
1
-2/+2
*
gh-101765: unicodeobject: use Py_XDECREF correctly (GH-102283)
Miss Islington (bot)
2023-02-26
1
-1/+1
*
[3.11] gh-101765: Fix refcount issues in list and unicode pickling (GH-102265...
Jelle Zijlstra
2023-02-26
2
-1/+11
*
[3.11] gh-101765: Fix SystemError / segmentation fault in iter `__reduce__` w...
Ionite
2023-02-25
7
-23/+66
*
[3.11] GH-101696: invalidate type version tag in `_PyStaticType_Dealloc` (GH-...
Erlend E. Aasland
2023-02-11
1
-0/+2
*
[3.11] gh-101072: support default and kw default in PyEval_EvalCodeEx for 3.1...
Łukasz Langa
2023-02-07
1
-2/+4
*
[3.11] gh-101266: Revert fix __sizeof__ for subclasses of int (#101638)
Mark Dickinson
2023-02-07
2
-8/+9
*
[3.11] gh-101266: Fix __sizeof__ for subclasses of int (GH-101394) (#101579)
Mark Dickinson
2023-02-05
2
-9/+8
*
[3.11] gh-101037: Fix potential memory underallocation for zeros of int subty...
Miss Islington (bot)
2023-01-21
1
-0/+5
*
gh-101056: Fix memory leak in `formatfloat()` in `bytesobject.c` (GH-101057)
Miss Islington (bot)
2023-01-16
1
-1/+3
*
[3.11] GH-100942: Fix incorrect cast in property_copy(). (GH-100965). (#101008)
Nikita Sobolev
2023-01-15
1
-3/+4
*
[3.11] gh-100637: Fix int and bool __sizeof__ calculation to include the 1 el...
Miss Islington (bot)
2023-01-03
1
-1/+4
*
[3.11] gh-99110: Initialize frame->previous in init_frame to fix segmentation...
Bill Fisher
2022-12-24
1
-0/+1
*
clarify the 4300-digit limit on int-str conversion (GH-100175)
Miss Islington (bot)
2022-12-12
1
-2/+2
*
[3.11] gh-99886: Fix crash when freeing objects with managed dictionaries (#9...
Ken Jin
2022-12-04
1
-3/+5
*
gh-99845: _PyObject_DictPointer(): fix dictoffset cast (#99922)
Victor Stinner
2022-12-01
1
-1/+2
*
gh-99553: fix bug where an ExceptionGroup subclass can wrap a BaseException (...
Miss Islington (bot)
2022-11-18
1
-1/+13
*
gh-99443: `descr_set_trampoline_call` return type should be `int` not `PyObje...
Miss Islington (bot)
2022-11-16
1
-1/+1
*
gh-99181: fix except* on unhashable exceptions (GH-99192)
Miss Islington (bot)
2022-11-08
1
-17/+26
*
gh-98852: Fix subscription of type aliases (GH-98920)
Miss Islington (bot)
2022-11-01
1
-0/+7
*
[3.11] gh-98783: Fix crashes when `str` subclasses are used in `_PyUnicode_Eq...
Dennis Sweeney
2022-10-30
1
-2/+2
*
obmalloc: Remove unused variable. (GH-98770)
Miss Islington (bot)
2022-10-27
1
-3/+1
*
gh-97943: PyFunction_GetAnnotations should return a borrowed reference. (GH-9...
Miss Islington (bot)
2022-10-06
1
-2/+5
*
gh-95196: Disable incorrect pickling of the C implemented classmethod descrip...
Miss Islington (bot)
2022-10-05
1
-1/+1
*
[3.11] GH-97779: Ensure that *all* frame objects are backed by "complete" fra...
Miss Islington (bot)
2022-10-05
2
-4/+34
*
gh-97591: In `Exception.__setstate__()` acquire strong references before call...
Miss Islington (bot)
2022-10-02
1
-1/+7
*
gh-97616: list_resize() checks for integer overflow (GH-97617)
Miss Islington (bot)
2022-09-28
1
-2/+8
*
gh-95778: Mention sys.set_int_max_str_digits() in error message (GH-96874)
Miss Islington (bot)
2022-09-16
1
-2/+2
*
[3.11] gh-96005: Handle WASI ENOTCAPABLE in getpath (GH-96006) (GH-96034) (GH...
Christian Heimes
2022-09-13
1
-0/+5
*
gh-96352: Set AttributeError context in _PyObject_GenericGetAttrWithDict (GH-...
Miss Islington (bot)
2022-09-08
1
-0/+2
[next]