COMMITS
/ Objects/genobject.c August 23, 2022
K
[3.10] GH--93592: Fix frame chain when throwing exceptions into coroutines (GH-95207)
Kristján Valur Jónsson committed
March 31, 2022
M
bpo-14911: Corrected generator.throw() documentation (GH-32207)
Miss Islington (bot) committed
December 8, 2021
M
[3.10] bpo-46009: Do not exhaust generator when send() method raises (GH-29986). (GH-29988)
Mark Shannon committed
July 23, 2021
M
bpo-42747: Remove Py_TPFLAGS_HAVE_AM_SEND and make Py_TPFLAGS_HAVE_VERSION_TAG no-op (GH-27260) (GH-27306)
Miss Islington (bot) committed
April 30, 2021
S
bpo-42800: Rename AUDIT_READ to PY_AUDIT_READ (GH-25736)
Steve Dower committed
April 29, 2021
R
bpo-42800: add audit hooks for f_code and tb_frame (GH-24182)
Ryan Hileman committed
April 6, 2021
M
bpo-43683: Handle generator entry in bytecode (GH-25138)
Mark Shannon committed
April 1, 2021
M
bpo-27129: Use instruction offsets, not byte offsets, in bytecode and internally. (GH-25069)
Mark Shannon committed
February 19, 2021
V
bpo-43268: Pass interp rather than tstate to internal functions (GH-24580)
Victor Stinner committed
November 10, 2020
V
bpo-42085: Introduce dedicated entry in PyAsyncMethods for sending values (#22780)
Vladimir Matveev committed
October 12, 2020
V
Delete PyGen_Send (#22663)
Vladimir Matveev committed
October 10, 2020
V
bpo-41756: Add PyIter_Send function (#22443)
Vladimir Matveev committed
September 22, 2020
S
bpo-41756: Refactor gen_send_ex(). (GH-22330)
Serhiy Storchaka committed
September 19, 2020
V
bpo-41756: Introduce PyGen_Send C API (GH-22196)
Vladimir Matveev committed
July 17, 2020
July 9, 2020
C
bpo-29590: fix stack trace for gen.throw() with yield from (#19896)
Chris Jerdonek committed
June 23, 2020
V
bpo-40521: Cleanup code of free lists (GH-21082)
Victor Stinner committed
June 8, 2020
V
bpo-40887: Don't use finalized free lists (GH-20700)
Victor Stinner committed
June 5, 2020
V
bpo-40521: Make async gen free lists per-interpreter (GH-20643)
Victor Stinner committed
June 4, 2020
M
Don't raise an exception on normal return from generator. (GH-19473)
Mark Shannon committed
May 22, 2020
C
bpo-40696: Fix a hang that can arise after gen.throw() (GH-20287)
Chris Jerdonek committed
May 18, 2020
C
Use _PyErr_ChainStackItem() inside gen_send_ex(). (GH-20173)
Chris Jerdonek committed
C
bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951)
Chris Jerdonek committed
May 13, 2020
C
bpo-29587: Make gen.throw() chain exceptions with yield from (GH-19858)
Chris Jerdonek committed
May 5, 2020
V
bpo-29587: _PyErr_ChainExceptions() checks exception (GH-19902)
Victor Stinner committed
May 3, 2020
C
bpo-29587: allow chaining NULL exceptions in _gen_throw() (GH-19877)
Chris Jerdonek committed
May 2, 2020
C
bpo-29587: Update gen.throw() to chain exceptions (#19823)
Chris Jerdonek committed
April 30, 2020
V
Revert "bpo-29587: Enable implicit exception chaining with gen.throw() (GH-19811)" (#19821)
Victor Stinner committed
C
bpo-29587: Enable implicit exception chaining with gen.throw() (GH-19811)
Chris Jerdonek committed
April 29, 2020
V
bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769)
Victor Stinner committed
April 28, 2020
V
bpo-40429: PyFrame_GetCode() result cannot be NULL (GH-19772)
Victor Stinner committed
April 15, 2020
V
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner committed
April 14, 2020
V
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
Victor Stinner committed
April 10, 2020
E
bpo-39481: PEP 585 for enumerate, AsyncGeneratorType, mmap (GH-19421)
Ethan Smith committed
March 4, 2020
A
bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601)
Andy Lester committed
February 14, 2020
A
closes bpo-39630: Update pointers to string literals to be const char *. (GH-18510)
Andy Lester committed
February 13, 2020
D
bpo-39573: Add Py_IS_TYPE() function (GH-18488)
Dong-hee Na committed
N
bpo-39606: allow closing async generators that are already closed (GH-18475)
Nathaniel J. Smith committed
February 11, 2020
P
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin committed
January 20, 2020
A
bpo-39386: Prevent double awaiting of async iterator (GH-18081)
Andrew Svetlov committed
November 19, 2019
V
bpo-35409: Ignore GeneratorExit in async_gen_athrow_throw (GH-14755)
Vincent Michel committed
November 14, 2019
V
bpo-38644: Add _PyEval_EvalFrame() with tstate (GH-17131)
Victor Stinner committed
September 30, 2019
Y
bpo-30773: Fix ag_running; prohibit running athrow/asend/aclose in parallel (#7468)
Yury Selivanov committed
September 17, 2019
A
bpo-38013: make async_generator_athrow object tolerant to throwing exceptions (GH-16070)
Andrew Svetlov committed
September 6, 2019
J
bpo-15088 : Remove PyGen_NeedsFinalizing() (GH-15702)
Joannah Nanjekye committed
August 26, 2019
V
Make PyXXX_Fini() functions private (GH-15531)
Victor Stinner committed
July 4, 2019
J
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer committed
May 31, 2019
J
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464)
Jeroen Demeyer committed
May 29, 2019
A
bpo-32388: Remove cross-version binary compatibility requirement in tp_flags (GH-4944)
Antoine Pitrou committed
November 27, 2018
S
bpo-33029: Fix signatures of getter and setter functions. (GH-10746)
Serhiy Storchaka committed