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
/
genobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-111178: Fix function signatures to fix undefined behavior (#131191)
Victor Stinner
2025-03-14
1
-8/+10
*
gh-129354: Use PyErr_FormatUnraisable() function (#129523)
Victor Stinner
2025-02-05
1
-4/+8
*
GH-91048: Add utils for capturing async call stack for asyncio programs and e...
Yury Selivanov
2025-01-22
1
-1/+0
*
gh-125723: Fix crash with f_locals when generator frame outlive their genera...
Mikhail Efimov
2025-01-22
1
-8/+15
*
gh-128078: Use `PyErr_SetRaisedException` in `_PyGen_SetStopIterationValue` (...
Bénédikt Tran
2025-01-13
1
-22/+10
*
gh-128078: Clear exception in `anext` before calling `_PyGen_SetStopIteration...
Bénédikt Tran
2025-01-13
1
-0/+1
*
gh-126491: Revert "GH-126491: Lower heap size limit with faster marking (GH-1...
Petr Viktorin
2024-12-10
1
-3/+66
*
GH-126491: Lower heap size limit with faster marking (GH-127519)
Mark Shannon
2024-12-06
1
-66/+3
*
gh-126091: Always link generator frames when propagating a thrown-in exceptio...
Jacob Bower
2024-11-21
1
-6/+12
*
gh-111178: Fix function signatures in genobject.c (#124970)
Victor Stinner
2024-10-05
1
-206/+271
*
gh-123923: Defer refcounting for `f_funcobj` in `_PyInterpreterFrame` (#124026)
Sam Gross
2024-09-24
1
-4/+1
*
gh-123923: Defer refcounting for `f_executable` in `_PyInterpreterFrame` (#12...
Sam Gross
2024-09-12
1
-4/+12
*
GH-118093: Improve handling of short and mid-loop traces (GH-122252)
Brandt Bucher
2024-07-29
1
-2/+3
*
gh-100240: Use a consistent implementation for freelists (#121934)
Sam Gross
2024-07-22
1
-96/+12
*
gh-117139: Convert the evaluation stack to stack refs (#118450)
Ken Jin
2024-06-26
1
-2/+2
*
gh-120834: fix over-allocation in PyGenObject, PyCoroObject, PyAsyncGenObject...
Irit Katriel
2024-06-24
1
-3/+3
*
gh-120834: fix type of *_iframe field in _PyGenObject_HEAD declaration (#120835)
Irit Katriel
2024-06-24
1
-18/+14
*
gh-114091: Reword error message for unawaitable types (#114090)
Steele Farnsworth
2024-06-17
1
-1/+1
*
gh-110209: Add __class_getitem__ for generator and coroutine (#110212)
James Hilton-Balfe
2024-05-07
1
-0/+2
*
GH-117714: implement athrow().close() and asend().close() using throw (GH-117...
Thomas Grainger
2024-05-06
1
-4/+38
*
GH-117881: fix athrow().throw()/asend().throw() concurrent access (GH-117882)
Thomas Grainger
2024-05-01
1
-0/+37
*
gh-117657: Fix small issues with instrumentation and TSAN (#118064)
Dino Viehland
2024-04-30
1
-3/+5
*
gh-118272: Clear generator frame's locals when the generator is closed (#118277)
Irit Katriel
2024-04-30
1
-0/+1
*
GH-117536: GH-117894: fix athrow().throw(...) unawaited warning (GH-117851)
Thomas Grainger
2024-04-24
1
-1/+8
*
gh-111968: Split _Py_async_gen_asend_freelist out of _Py_async_gen_fr… (gh-...
Donghee Na
2024-02-17
1
-21/+30
*
gh-111968: Rename freelist related struct names to Eric's suggestion (gh-115329)
Donghee Na
2024-02-14
1
-21/+21
*
gh-111968: Refactor _PyXXX_Fini to integrate with _PyObject_ClearFreeLists (g...
Donghee Na
2024-02-10
1
-11/+0
*
gh-111968: Use per-thread freelists for dict in free-threading (gh-114323)
Donghee Na
2024-02-01
1
-0/+4
*
gh-111968: Unify freelist naming schema to Eric's suggestion (gh-114581)
Donghee Na
2024-01-26
1
-2/+2
*
gh-111968: Use per-thread freelists for generator in free-threading (gh-114189)
Donghee Na
2024-01-18
1
-40/+24
*
gh-113753: Clear finalized bit when putting PyAsyncGenASend back into free li...
Sam Gross
2024-01-10
1
-0/+2
*
gh-111058: Change coro.cr_frame/gen.gi_frame to be None for a closed coroutin...
Irit Katriel
2023-12-01
1
-1/+1
*
gh-111354: remove comparisons with enum values, variable reuse, unused import...
Irit Katriel
2023-11-09
1
-22/+14
*
gh-111354: Simplify _PyGen_yf by moving some of its work to the compiler and ...
Irit Katriel
2023-11-03
1
-24/+9
*
gh-111354: simplify detection of RESUME after YIELD_VALUE at except-depth 1 ...
Irit Katriel
2023-11-02
1
-18/+9
*
gh-111354: define names for RESUME oparg values (#111365)
Irit Katriel
2023-10-26
1
-1/+2
*
gh-109094: replace frame->prev_instr by frame->instr_ptr (#109095)
Irit Katriel
2023-10-26
1
-5/+8
*
gh-100762: Fix optimization in gen_close (#111069)
Irit Katriel
2023-10-25
1
-2/+3
*
gh-110964: Remove private _PyArg functions (#110966)
Victor Stinner
2023-10-17
1
-0/+1
*
GH-108614: Add `RESUME_CHECK` instruction (GH-108630)
Mark Shannon
2023-09-07
1
-1/+5
*
GH-108035: Remove the `_PyCFrame` struct as it is no longer needed for perfor...
Mark Shannon
2023-08-17
1
-4/+4
*
GH-100964: Break cycles involving exception state when returning from generat...
Mark Shannon
2023-08-02
1
-5/+4
*
gh-106869: Use new PyMemberDef constant names (#106871)
Victor Stinner
2023-07-25
1
-4/+4
*
gh-106521: Remove _PyObject_LookupAttr() function (GH-106642)
Serhiy Storchaka
2023-07-12
1
-2/+2
*
GH-100987: Allow objects other than code objects as the "executable" of an in...
Mark Shannon
2023-06-14
1
-3/+3
*
GH-105162: Account for `INSTRUMENTED_RESUME` in gen.close/throw. (GH-105187)
Mark Shannon
2023-06-02
1
-3/+15
*
gh-105140: remove unused arg of _PyErr_ChainStackItem (#105141)
Irit Katriel
2023-06-01
1
-1/+1
*
GH-89091: raise `RuntimeWarning` for unawaited async generator methods (#104611)
Kumar Aditya
2023-05-26
1
-0/+26
*
gh-104770: Let generator.close() return value (#104771)
Nicolas Tessore
2023-05-23
1
-3/+8
*
GH-102181: Improve specialization stats for SEND (GH-102182)
penguin_wwy
2023-05-10
1
-3/+0
[next]