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
*
bpo-33029: Fix signatures of getter and setter functions. (GH-10746)
Serhiy Storchaka
2018-11-27
1
-6/+6
*
bpo-35081: Add Include/internal/pycore_object.h (GH-10640)
Victor Stinner
2018-11-21
1
-0/+1
*
bpo-35269: Fix a possible segfault involving a newly-created coroutine (GH-10...
Zackery Spytz
2018-11-18
1
-1/+1
*
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner
2018-11-12
1
-1/+1
*
bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)
Victor Stinner
2018-11-01
1
-3/+3
*
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner
2018-10-31
1
-1/+1
*
closes bpo-34493: Objects/genobject.c: Add missing NULL check to compute_cr_o...
Alexey Izbyshev
2018-08-25
1
-0/+3
*
bpo-33786: Fix asynchronous generators to handle GeneratorExit in athrow() (G...
Yury Selivanov
2018-06-08
1
-8/+7
*
bpo-17611. Move unwinding of stack for "pseudo exceptions" from interpreter t...
Serhiy Storchaka
2018-02-22
1
-6/+4
*
bpo-32703: Fix coroutine resource warning in case where there's an error (GH-...
Yury Selivanov
2018-01-29
1
-6/+7
*
bpo-32670: Enforce PEP 479. (#5327)
Yury Selivanov
2018-01-26
1
-50/+8
*
bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code ...
Serhiy Storchaka
2018-01-25
1
-12/+9
*
bpo-32591: Add native coroutine origin tracking (#5250)
Nathaniel J. Smith
2018-01-21
1
-4/+57
*
Add the const qualifier to "char *" variables that refer to literal strings. ...
Serhiy Storchaka
2017-11-11
1
-4/+4
*
Move exc state to generator. Fixes bpo-25612 (#1773)
Mark Shannon
2017-10-22
1
-11/+35
*
bpo-31709: Drop support for asynchronous __aiter__. (#3903)
Yury Selivanov
2017-10-06
1
-94/+0
*
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow
2017-09-08
1
-0/+1
*
Fix wrapping into StopIteration of return values in generators and coroutines...
Yury Selivanov
2017-03-12
1
-2/+1
*
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka
2017-01-23
1
-2/+1
*
Backed out changeset 99c34e47348b
Victor Stinner
2016-12-09
1
-1/+1
*
Inline PyEval_EvalFrameEx() in callers
Victor Stinner
2016-12-09
1
-1/+1
*
Issue #28858: Remove _PyObject_CallArg1() macro
Victor Stinner
2016-12-05
1
-1/+1
*
Backed out changeset b9c9691c72c5
Victor Stinner
2016-12-04
1
-2/+2
*
Replace PyObject_CallFunction() with fastcall
Victor Stinner
2016-12-01
1
-1/+1
*
Replace PyObject_CallFunctionObjArgs() with fastcall
Victor Stinner
2016-12-01
1
-2/+2
*
Fix _PyGen_yf()
Victor Stinner
2016-11-24
1
-0/+9
*
Issue #28721: Fix asynchronous generators aclose() and athrow()
Yury Selivanov
2016-11-16
1
-3/+11
*
Issue #28003: Make WrappedVal, ASend and AThrow GC types
Yury Selivanov
2016-11-09
1
-14/+48
*
Merge 3.5
Yury Selivanov
2016-11-09
1
-2/+2
|
\
|
*
genobject: Remove unnecessary tp_free slots from aiter_wrapper and coro_wrapper
Yury Selivanov
2016-11-09
1
-2/+2
*
|
Issue #23996: Added _PyGen_SetStopIterationValue for safe raising
Serhiy Storchaka
2016-11-06
1
-21/+51
|
\
\
|
|
/
|
*
Issue #23996: Added _PyGen_SetStopIterationValue for safe raising
Serhiy Storchaka
2016-11-06
1
-10/+50
*
|
Issue #28410: Added _PyErr_FormatFromCause() -- the helper for raising
Serhiy Storchaka
2016-10-21
1
-30/+2
*
|
Issue #27129: Replaced wordcode related magic constants with macros.
Serhiy Storchaka
2016-09-11
1
-2/+2
*
|
Issue #28003: Implement PEP 525 -- Asynchronous Generators.
Yury Selivanov
2016-09-09
1
-46/+986
*
|
Add NULL check for gen->gi_code in gen_send_ex()
Christian Heimes
2016-09-08
1
-1/+1
*
|
merge 3.5 (#27968)
Benjamin Peterson
2016-09-07
1
-12/+15
|
\
\
|
|
/
|
*
supress coroutine warning when an exception is pending (#27968)
Benjamin Peterson
2016-09-07
1
-12/+15
*
|
Avoid calling functions with an empty string as format string
Victor Stinner
2016-09-06
1
-1/+1
*
|
merge 3.5 (#27812)
Benjamin Peterson
2016-09-05
1
-1/+4
|
\
\
|
|
/
|
*
clear out f_gen during generator finalization (closes #27812)
Benjamin Peterson
2016-09-05
1
-1/+4
*
|
merge 3.5 (closes #27811)
Benjamin Peterson
2016-09-05
1
-12/+13
|
\
\
|
|
/
|
*
do not allow _PyGen_Finalize to fail (closes #27811)
Benjamin Peterson
2016-09-05
1
-12/+13
*
|
Merge 3.5 (issue #27243)
Yury Selivanov
2016-06-09
1
-0/+94
|
\
\
|
|
/
|
*
Issue #27243: Fix __aiter__ protocol
Yury Selivanov
2016-06-09
1
-0/+94
*
|
Issue #26647: Python interpreter now uses 16-bit wordcode instead of bytecode.
Serhiy Storchaka
2016-05-24
1
-2/+2
*
|
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka
2016-04-06
1
-2/+2
|
\
\
|
|
/
*
|
Merge 3.5 (issue #25888)
Yury Selivanov
2016-03-02
1
-6/+6
|
\
\
|
|
/
|
*
coroutines: Error when awaiting on coroutine that's being awaited
Yury Selivanov
2016-03-02
1
-6/+6
*
|
Merge 3.5 (issue #25887)
Yury Selivanov
2016-02-13
1
-12/+21
|
\
\
|
|
/
[next]