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-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
*
GH-96803: Add three C-API functions to make _PyInterpreterFrame less opaque f...
Mark Shannon
2023-05-05
1
-1/+2
*
gh-79940: add introspection API for asynchronous generators to `inspect` modu...
Thomas Krennwallner
2023-03-11
1
-0/+10
*
gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...
Irit Katriel
2023-03-08
1
-48/+16
*
fix typo in async generator code field name `ag_code` (#102448)
Kumar Aditya
2023-03-08
1
-1/+1
*
GH-100719: Remove redundant `gi_code` field from generator object. (GH-100749)
Mark Shannon
2023-02-23
1
-17/+55
*
gh-101907: Stop using `_Py_OPCODE` and `_Py_OPARG` macros (GH-101912)
Steve Dower
2023-02-20
1
-5/+5
*
GH-100762: Don't call `gen.throw()` in `gen.close()`, unless necessary. (GH-1...
Mark Shannon
2023-01-24
1
-1/+23
*
GH-100126: Skip incomplete frames in more places (GH-100613)
Brandt Bucher
2023-01-09
1
-4/+7
*
GH-99005: More intrinsics (GH-100774)
Mark Shannon
2023-01-06
1
-2/+2
*
gh-100720: refactor calculation of number of frame slots for a code object in...
Irit Katriel
2023-01-04
1
-2/+2
*
gh-99537: Use Py_SETREF() function in C code (#99657)
Victor Stinner
2022-11-22
1
-2/+1
*
gh-99300: Replace Py_INCREF() with Py_NewRef() (#99530)
Victor Stinner
2022-11-16
1
-4/+2
*
gh-99300: Use Py_NewRef() in Objects/ directory (#99335)
Victor Stinner
2022-11-10
1
-42/+22
*
GH-96421: Insert shim frame on entry to interpreter (GH-96319)
Mark Shannon
2022-11-10
1
-12/+3
*
GH-96793: Specialize FOR_ITER for generators. (GH-98772)
Mark Shannon
2022-11-07
1
-4/+4
*
GH-96793: Implement PEP 479 in bytecode. (GH-99006)
Mark Shannon
2022-11-03
1
-19/+3
*
GH-98686: Quicken everything (GH-98687)
Brandt Bucher
2022-11-02
1
-2/+1
*
gh-96348: Deprecate the 3-arg signature of coroutine.throw and generator.thro...
Ofey Chan
2022-09-30
1
-3/+29
*
GH-90997: Wrap yield from/await in a virtual try/except StopIteration (GH-96010)
Brandt Bucher
2022-08-19
1
-20/+1
*
GH-90230: Add stats to breakdown the origin of calls to `PyEval_EvalFrame` (G...
Mark Shannon
2022-05-27
1
-0/+2
*
Split refcount stats into 'interpreter' and 'non-interpreter' (GH-92919)
Mark Shannon
2022-05-18
1
-0/+2
*
Add more stats for freelist use and allocations. (GH-92211)
Mark Shannon
2022-05-03
1
-0/+2
*
gh-91320: Use _PyCFunction_CAST() (#92251)
Victor Stinner
2022-05-03
1
-5/+5
*
gh-91719: Add pycore_opcode.h internal header file (#91906)
Victor Stinner
2022-04-25
1
-2/+2
[next]