..
clinic
Fix bad grammar and import docstring for split/rsplit (GH-32381) (GH-32416)
2022-04-08 12:06:19 -05:00
stringlib
[3.10] bpo-43504: Remove effbot urls (GH-26308) ( #92161 )
2022-05-02 12:21:51 -06:00
README
Issue #18093 : Factor out the programs that embed the runtime
2014-07-25 21:52:14 +10:00
abstract.c
bpo-30570: Use Py_EnterRecursiveCall() in issubclass() (GH-29048)
2021-10-22 14:46:56 -07:00
accu.c
bpo-35081: Move accu.h to Include/internal/pycore_accu.h (GH-10271)
2018-11-01 02:30:36 +01:00
boolobject.c
bpo-41870: Avoid the test when nargs=0 (GH-22462)
2020-10-01 13:50:40 +09:00
bytearrayobject.c
[3.10] gh-101765: Fix SystemError / segmentation fault in iter `__reduce__` when internal access of `builtins.__dict__` exhausts the iterator (GH-101769) ( #102229 )
2023-02-24 19:50:53 -08:00
bytes_methods.c
bpo-43179: Generalise alignment for optimised string routines (GH-24624)
2021-03-31 12:12:39 +02:00
bytesobject.c
[3.10] gh-133767: Fix use-after-free in the unicode-escape decoder with an error handler (GH-129648) (GH-133944) (GH-134345)
2025-06-02 17:55:48 +02:00
call.c
bpo-42990: Further refactoring of PyEval_ functions. (GH-24368)
2021-02-01 10:42:03 +00:00
capsule.c
bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)
2020-12-01 10:37:39 +01:00
cellobject.c
bpo-40268: Remove unused pycore_pymem.h includes (GH-19531)
2020-04-15 02:57:50 +02:00
classobject.c
bpo-44657: Fix instancemethod_call to use PyInstanceMethod_GET_FUNCTION (GH-27202)
2021-07-28 06:29:17 -07:00
codeobject.c
[3.10] GH-96187: Prevent _PyCode_GetExtra to return garbage for negative indexes (GH-96188). ( #96210 )
2022-08-23 15:58:25 +01:00
complexobject.c
bpo-44698: Restore complex pow behaviour for small integral exponents (GH-27772) (GH-27796)
2021-08-17 18:38:03 +01:00
descrobject.c
[3.10] GH-100942: Fix incorrect cast in property_copy(). (GH-100965). ( #101009 )
2023-01-15 12:38:59 +05:30
dict-common.h
bpo-33312: Fix clang ubsan out of bounds warnings in dict. (GH-6537)
2018-04-19 22:41:19 -07:00
dictnotes.txt
Issue #15055 : update dictnotes.txt. Patch by Mark Shannon.
2012-06-24 21:03:45 +02:00
dictobject.c
bpo-44114: Remove redundant cast. (GH-26098)
2021-05-13 14:07:31 -07:00
enumobject.c
bpo-42536: GC track recycled tuples (GH-23623)
2020-12-04 19:45:57 -08:00
exceptions.c
gh-97591: In `Exception.__setstate__()` acquire strong references before calling `tp_hash` slot (GH-97700)
2022-10-01 21:18:38 -07:00
fileobject.c
bpo-43916: PyStdPrinter_Type uses Py_TPFLAGS_DISALLOW_INSTANTIATION (GH-25749)
2021-04-30 14:56:27 +02:00
floatobject.c
gh-95605: Fix `float(s)` error message when `s` contains only whitespace (GH-95665) (GH-95859)
2022-08-10 19:57:55 +01:00
frameobject.c
[3.10] gh-92311: Let frame_setlineno jump over listcomps (GH-92717)
2022-05-12 16:31:43 +01:00
funcobject.c
[3.10] gh-97943: PyFunction_GetAnnotations should return a borrowed reference. (GH-97949) (GH-97989)
2022-10-06 17:59:09 -07:00
genericaliasobject.c
[3.10] gh-98852: Fix subscription of types.GenericAlias instances (GH-98920) (GH-98969)
2022-11-01 20:14:38 +02:00
genobject.c
[3.10] GH--93592: Fix frame chain when throwing exceptions into coroutines (GH-95207)
2022-08-23 12:23:39 +01:00
interpreteridobject.c
bpo-43962: Fix _PyInterpreterState_IDIncref() (GH-25683)
2021-04-28 13:40:44 +02:00
iterobject.c
[3.10] gh-101892: Fix `SystemError` when a callable iterator call exhausts the iterator (GH-101896) ( #102422 )
2023-03-04 20:56:12 +05:30
listobject.c
[3.10] gh-101765: Fix refcount issues in list and unicode pickling (GH-102265) ( #102269 )
2023-02-25 16:38:00 -08:00
listsort.txt
[3.10] Fix typos in the Objects directory (GH-28766) (GH-28797)
2021-10-07 07:31:33 -07:00
lnotab_notes.txt
bpo-42739: Don't use sentinels to mark end of line table. (GH-25657)
2021-04-29 13:12:51 +01:00
longobject.c
gh-95778: Mention sys.set_int_max_str_digits() in error message (GH-96874)
2022-09-16 11:30:05 -07:00
memoryobject.c
gh-92888: Fix memoryview bad `__index__` use after free (GH-92946) (GH-93950)
2022-06-23 18:10:14 +08:00
methodobject.c
bpo-33930: Fix segfault with deep recursion when cleaning method objects (GH-27678) (GH-27719)
2021-08-11 10:32:44 +02:00
moduleobject.c
bpo-43901: Fix refleaks in test_module (GH-25754)
2021-04-30 17:26:45 +01:00
namespaceobject.c
bpo-39075: types.SimpleNamespace no longer sorts attributes in its repr (GH-19430)
2020-05-15 18:27:54 -07:00
object.c
gh-99845: _PyObject_DictPointer(): fix dictoffset cast (GH-99922)
2022-12-01 05:32:15 -08:00
obmalloc.c
obmalloc: Remove unused variable. (GH-98770)
2022-10-27 09:33:44 -07:00
odictobject.c
bpo-46085: Fix iterator cache mechanism of OrderedDict. (GH-30290)
2021-12-29 21:29:03 -08:00
picklebufobject.c
[3.10] gh-91118: Fix docstrings that do not honor --without-doc-strings (GH-31769) ( #91662 )
2022-04-19 13:01:09 -07:00
rangeobject.c
bpo-45030: Fix integer overflow in __reduce__ of the range iterator (GH-28000)
2021-09-04 13:39:30 -07:00
setobject.c
bpo-46615: Don't crash when set operations mutate the sets (GH-31120)
2022-02-11 12:44:17 -08:00
sliceobject.c
bpo-43268: Pass interp rather than tstate to internal functions (GH-24580)
2021-02-19 15:10:45 +01:00
structseq.c
bpo-43916: Move the _PyStructSequence_InitType function to the internal API (GH-25854)
2021-05-03 15:50:24 +01:00
tupleobject.c
[3.10] gh-101765: Fix SystemError / segmentation fault in iter `__reduce__` when internal access of `builtins.__dict__` exhausts the iterator (GH-101769) ( #102229 )
2023-02-24 19:50:53 -08:00
typeobject.c
gh-93021: Fix __text_signature__ for __get__ (GH-93023) (GH-94086)
2022-06-21 22:32:24 +02:00
typeslots.inc
bpo-41073: PyType_GetSlot() can now accept static types. (GH-21931)
2020-11-10 12:53:46 -08:00
typeslots.py
bpo-41073: PyType_GetSlot() can now accept static types. (GH-21931)
2020-11-10 12:53:46 -08:00
unicodectype.c
Removed unintentional trailing spaces in non-external and non-generated C files.
2015-03-18 21:53:15 +02:00
unicodeobject.c
[3.10] gh-133767: Fix use-after-free in the unicode-escape decoder with an error handler (GH-129648) (GH-133944) (GH-134345)
2025-06-02 17:55:48 +02:00
unicodetype_db.h
closes bpo-39926: Update Unicode to 13.0.0. (GH-18910)
2020-03-10 20:41:34 -07:00
unionobject.c
[3.10] gh-91118: Fix docstrings that do not honor --without-doc-strings (GH-31769) ( #91662 )
2022-04-19 13:01:09 -07:00
weakrefobject.c
[3.10] gh-79512: Fixed names and __module__ value of weakref classes (GH-93719) (GH-94071)
2022-06-21 22:36:09 +03:00