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-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
*
bpo-47177: Replace `f_lasti` with `prev_instr` (GH-32208)
Brandt Bucher
2022-04-07
1
-11/+8
*
bpo-14911: Corrected generator.throw() documentation (GH-32207)
Dave Goncalves
2022-03-31
1
-4/+10
*
bpo-47045: Remove `f_state` field (GH-31963)
Mark Shannon
2022-03-22
1
-51/+47
*
bpo-46841: Quicken code in-place (GH-31888)
Brandt Bucher
2022-03-21
1
-10/+9
*
bpo-46841: Don't scan backwards in bytecode (GH-31901)
Mark Shannon
2022-03-16
1
-2/+5
*
bpo-46944: use FASTCALL calling convention in generator.throw (GH-31723)
Kumar Aditya
2022-03-11
1
-14/+23
*
bpo-46836: Rename InterpreterFrame to _PyInterpreterFrame (GH-31583)
Victor Stinner
2022-02-25
1
-26/+26
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-4/+2
*
bpo-43683: Streamline YIELD_VALUE and SEND (GH-30723)
Mark Shannon
2022-01-24
1
-2/+4
*
bpo-46409: Make generators in bytecode (GH-30633)
Mark Shannon
2022-01-20
1
-21/+36
*
bpo-45711: Remove type and traceback from exc_info (GH-30122)
Irit Katriel
2021-12-17
1
-6/+0
*
bpo-46039: Split yield from in two (GH-30035)
Mark Shannon
2021-12-15
1
-7/+11
*
bpo-46008: Make runtime-global object/type lifecycle functions and state cons...
Eric Snow
2021-12-09
1
-0/+1
*
bpo-46009: Do not exhaust generator when send() method raises (GH-29986)
Mark Shannon
2021-12-08
1
-0/+13
*
bpo-45963: Make space for the InterpreterFrame of a generator in that generat...
Mark Shannon
2021-12-06
1
-84/+99
*
bpo-45786: Allocate space for frame in frame object. (GH-29729)
Mark Shannon
2021-11-29
1
-7/+15
*
bpo-44525: Copy free variables in bytecode to allow calls to inner functions ...
Mark Shannon
2021-11-23
1
-11/+10
*
bpo-45813: Make sure that frame->generator is NULLed when generator is deallo...
Mark Shannon
2021-11-22
1
-0/+1
*
bpo-45637: Store the frame pointer in the cframe (GH-29267)
Mark Shannon
2021-10-28
1
-5/+5
*
bpo-45522: Allow to disable freelists on build time (GH-29056)
Christian Heimes
2021-10-21
1
-5/+21
*
bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)
Victor Stinner
2021-10-12
1
-4/+5
*
bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)
Victor Stinner
2021-10-11
1
-1/+1
*
bpo-45355: Use sizeof(_Py_CODEUNIT) instead of literal 2 for the size of the ...
Serhiy Storchaka
2021-10-03
1
-1/+1
*
Clean up initialization __class_getitem__ with Py_GenericAlias. (GH-28450)
Serhiy Storchaka
2021-09-19
1
-1/+1
*
bpo-44990: Change layout of evaluation frames. "Layout B" (GH-27933)
Mark Shannon
2021-08-25
1
-7/+3
*
bpo-44590: Lazily allocate frame objects (GH-27077)
Mark Shannon
2021-07-26
1
-70/+195
*
bpo-42747: Remove Py_TPFLAGS_HAVE_AM_SEND and make Py_TPFLAGS_HAVE_VERSION_TA...
Petr Viktorin
2021-07-23
1
-6/+3
*
bpo-44530: Add co_qualname field to PyCodeObject (GH-26941)
Gabriele N. Tornetta
2021-07-07
1
-1/+1
*
bpo-44032: Move data stack to thread from FrameObject. (GH-26076)
Mark Shannon
2021-05-21
1
-6/+6
*
bpo-42800: Rename AUDIT_READ to PY_AUDIT_READ (GH-25736)
Steve Dower
2021-04-30
1
-6/+6
*
bpo-42800: add audit hooks for f_code and tb_frame (GH-24182)
Ryan Hileman
2021-04-29
1
-6/+6
*
bpo-43683: Handle generator entry in bytecode (GH-25138)
Mark Shannon
2021-04-06
1
-21/+6
*
bpo-27129: Use instruction offsets, not byte offsets, in bytecode and interna...
Mark Shannon
2021-04-01
1
-2/+2
*
bpo-43268: Pass interp rather than tstate to internal functions (GH-24580)
Victor Stinner
2021-02-19
1
-5/+5
*
bpo-42085: Introduce dedicated entry in PyAsyncMethods for sending values (#2...
Vladimir Matveev
2020-11-10
1
-31/+26
*
Delete PyGen_Send (#22663)
Vladimir Matveev
2020-10-12
1
-4/+20
*
bpo-41756: Add PyIter_Send function (#22443)
Vladimir Matveev
2020-10-10
1
-7/+1
*
bpo-41756: Refactor gen_send_ex(). (GH-22330)
Serhiy Storchaka
2020-09-22
1
-94/+99
*
bpo-41756: Introduce PyGen_Send C API (GH-22196)
Vladimir Matveev
2020-09-19
1
-17/+48
*
bpo-40941: Unify implicit and explicit state in the frame and generator objec...
Mark Shannon
2020-07-17
1
-23/+48
*
bpo-29590: fix stack trace for gen.throw() with yield from (#19896)
Chris Jerdonek
2020-07-09
1
-0/+10
*
bpo-40521: Cleanup code of free lists (GH-21082)
Victor Stinner
2020-06-23
1
-8/+12
*
bpo-40887: Don't use finalized free lists (GH-20700)
Victor Stinner
2020-06-08
1
-0/+21
*
bpo-40521: Make async gen free lists per-interpreter (GH-20643)
Victor Stinner
2020-06-05
1
-40/+38
*
Don't raise an exception on normal return from generator. (GH-19473)
Mark Shannon
2020-06-04
1
-1/+2
[next]