COMMITS
/ Objects/genobject.c 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
November 21, 2018
V
bpo-35081: Add Include/internal/pycore_object.h (GH-10640)
Victor Stinner committed
November 18, 2018
Z
bpo-35269: Fix a possible segfault involving a newly-created coroutine (GH-10585)
Zackery Spytz committed
November 12, 2018
V
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner committed
November 1, 2018
V
bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)
Victor Stinner committed
October 31, 2018
V
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner committed
August 25, 2018
A
closes bpo-34493: Objects/genobject.c: Add missing NULL check to compute_cr_origin() (GH-8911)
Alexey Izbyshev committed
June 8, 2018
Y
bpo-33786: Fix asynchronous generators to handle GeneratorExit in athrow() (GH-7467)
Yury Selivanov committed
February 22, 2018
S
bpo-17611. Move unwinding of stack for "pseudo exceptions" from interpreter to compiler. (GH-5006)
Serhiy Storchaka committed
January 29, 2018
Y
bpo-32703: Fix coroutine resource warning in case where there's an error (GH-5410)
Yury Selivanov committed
January 26, 2018
Y
bpo-32670: Enforce PEP 479. (#5327)
Yury Selivanov committed
January 25, 2018
S
bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222)
Serhiy Storchaka committed
January 21, 2018
N
bpo-32591: Add native coroutine origin tracking (#5250)
Nathaniel J. Smith committed
November 11, 2017
S
Add the const qualifier to "char *" variables that refer to literal strings. (#4370)
Serhiy Storchaka committed
October 22, 2017
M
Move exc state to generator. Fixes bpo-25612 (#1773)
Mark Shannon committed
October 6, 2017
Y
bpo-31709: Drop support for asynchronous __aiter__. (#3903)
Yury Selivanov committed
September 8, 2017
E
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow committed
March 12, 2017
Y
Fix wrapping into StopIteration of return values in generators and coroutines (#644)
Yury Selivanov committed
January 23, 2017
S
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka committed
December 9, 2016
V
Backed out changeset 99c34e47348b
Victor Stinner committed
V
Inline PyEval_EvalFrameEx() in callers
Victor Stinner committed
December 5, 2016
V
Issue #28858: Remove _PyObject_CallArg1() macro
Victor Stinner committed
December 4, 2016
V
Backed out changeset b9c9691c72c5
Victor Stinner committed
December 1, 2016
V
Replace PyObject_CallFunction() with fastcall
Victor Stinner committed
V
Replace PyObject_CallFunctionObjArgs() with fastcall
Victor Stinner committed
November 24, 2016
V
Fix _PyGen_yf()
Victor Stinner committed
November 16, 2016
Y
Issue #28721: Fix asynchronous generators aclose() and athrow()
Yury Selivanov committed
November 9, 2016
Y
Issue #28003: Make WrappedVal, ASend and AThrow GC types
Yury Selivanov committed
Y
genobject: Remove unnecessary tp_free slots from aiter_wrapper and coro_wrapper
Yury Selivanov committed
November 6, 2016
S
Issue #23996: Added _PyGen_SetStopIterationValue for safe raising
Serhiy Storchaka committed
S
Issue #23996: Added _PyGen_SetStopIterationValue for safe raising
Serhiy Storchaka committed
October 21, 2016
S
Issue #28410: Added _PyErr_FormatFromCause() -- the helper for raising
Serhiy Storchaka committed
September 11, 2016
S
Issue #27129: Replaced wordcode related magic constants with macros.
Serhiy Storchaka committed
September 9, 2016
Y
Issue #28003: Implement PEP 525 -- Asynchronous Generators.
Yury Selivanov committed