cpython/Objects
Oleg Iarygin fe36778968
[3.10] gh-101892: Fix SystemError when a callable iterator call exhausts the iterator (GH-101896) (#102422)
gh-101892: Fix `SystemError` when a callable iterator call exhausts the iterator (#101896)

Co-authored-by: Oleg Iarygin <oleg@arhadthedev.net>
(cherry picked from commit 705487c655)

Co-authored-by: Raj <51259329+workingpayload@users.noreply.github.com>
2023-03-04 20:56:12 +05:30
..
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
abstract.c bpo-30570: Use Py_EnterRecursiveCall() in issubclass() (GH-29048) 2021-10-22 14:46:56 -07:00
accu.c
boolobject.c
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
bytesobject.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
call.c
capsule.c
cellobject.c
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
dictnotes.txt
dictobject.c
enumobject.c
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
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
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
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
namespaceobject.c
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
README
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
structseq.c
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
typeslots.py
unicodectype.c
unicodeobject.c gh-101765: unicodeobject: use Py_XDECREF correctly (GH-102283) 2023-02-26 15:09:43 -08:00
unicodetype_db.h
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

Source files for various builtin objects