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
/
Python
/
ceval.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #25557: Refactor _PyDict_LoadGlobal()
Victor Stinner
2015-11-20
1
-2/+9
*
Issue #25556: Add assertions to PyObject_GetItem() to ensure that an exception
Victor Stinner
2015-11-05
1
-2/+2
*
Merge 3.5
Victor Stinner
2015-11-05
1
-0/+4
|
\
|
*
Issue #25556: Fix LOAD_GLOBAL bytecode when globals type is not dict and the
Victor Stinner
2015-11-05
1
-0/+4
*
|
Issue 25483: Add an opcode to make f-string formatting more robust.
Eric V. Smith
2015-11-03
1
-0/+57
|
/
*
Merge typo fixes from 3.4 into 3.5
Martin Panter
2015-10-07
1
-1/+1
|
\
|
*
Various minor typos in documentation and comments
Martin Panter
2015-10-07
1
-2/+2
*
|
Issue #24492: make sure that ``from ... import ...` raises an
Brett Cannon
2015-08-12
1
-7/+12
*
|
set items in dict displays from left to right (closes #24569)
Benjamin Peterson
2015-07-05
1
-6/+9
*
|
Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.
Yury Selivanov
2015-07-03
1
-1/+1
*
|
Issue #24400: Introduce a distinct type for 'async def' coroutines.
Yury Selivanov
2015-06-22
1
-40/+39
*
|
Added the const qualifier for char* argument of Py_EnterRecursiveCall().
Serhiy Storchaka
2015-06-21
1
-1/+1
|
\
\
|
|
/
|
*
Added the const qualifier for char* argument of Py_EnterRecursiveCall().
Serhiy Storchaka
2015-06-21
1
-1/+1
*
|
Issue 24374: Plug refleak in set_coroutine_wrapper
Yury Selivanov
2015-06-04
1
-31/+19
*
|
Issue 24342: No need to use PyAPI_FUNC for _PyEval_ApplyCoroutineWrapper
Yury Selivanov
2015-06-03
1
-28/+30
*
|
Issue 24342: Let wrapper set by sys.set_coroutine_wrapper fail gracefully
Yury Selivanov
2015-06-02
1
-9/+30
*
|
Issue 24017: Make PyEval_(Set|Get)CoroutineWrapper private
Yury Selivanov
2015-06-01
1
-3/+3
*
|
remove STORE_MAP, since it's unused
Benjamin Peterson
2015-05-28
1
-15/+0
*
|
in dict displays, evaluate the key before the value (closes #11205)
Benjamin Peterson
2015-05-28
1
-2/+2
*
|
Issue 24017: Drop getawaitablefunc and friends in favor of unaryfunc.
Yury Selivanov
2015-05-28
1
-2/+2
*
|
Issue 24017: fix for "async with" refcounting
Nick Coghlan
2015-05-13
1
-0/+2
*
|
Fix warnings for PyEval_GetCoroutineWrapper
Yury Selivanov
2015-05-12
1
-1/+1
*
|
PEP 0492 -- Coroutines with async and await syntax. Issue #24017.
Yury Selivanov
2015-05-12
1
-8/+223
*
|
PEP 448: additional unpacking generalizations (closes #2292)
Benjamin Peterson
2015-05-06
1
-5/+159
*
|
#23949: Improve tuple unpacking error messages.
R David Murray
2015-04-15
1
-7/+17
*
|
Issue #23571: _Py_CheckFunctionResult() now gives the name of the function
Victor Stinner
2015-03-21
1
-3/+3
*
|
Issue #23571: Restore removed assert(!PyErr_Occurred()); in
Victor Stinner
2015-03-16
1
-0/+7
*
|
Issue #23571: PyObject_Call(), PyCFunction_Call() and call_function() now
Victor Stinner
2015-03-06
1
-19/+11
*
|
Issue #22883: Got rid of outdated references to PyInt and PyString in comments.
Serhiy Storchaka
2015-02-17
1
-1/+1
*
|
Merge 3.4 (generator)
Victor Stinner
2015-01-31
1
-3/+4
|
\
\
|
|
/
|
*
Issue #23353: Fix the exception handling of generators in PyEval_EvalFrameEx().
Victor Stinner
2015-01-31
1
-3/+4
*
|
Merge 3.4 (ceval.c)
Victor Stinner
2014-12-12
1
-3/+5
|
\
\
|
|
/
|
*
Issue #18028: Fix aliasing issue in READ_TIMESTAMP() of ceval.c on x86_64,
Victor Stinner
2014-12-12
1
-3/+5
*
|
Issue #17636: Circular imports involving relative imports are now supported.
Antoine Pitrou
2014-10-13
1
-2/+20
*
|
merge 3.4
Benjamin Peterson
2014-06-17
1
-0/+7
|
\
\
|
|
/
|
*
check if the thread is finalizing after retaking the GIL
Benjamin Peterson
2014-06-17
1
-0/+7
*
|
Issue #21205: Add a new ``__qualname__`` attribute to generator, the qualified
Victor Stinner
2014-06-16
1
-8/+22
*
|
merge 3.4 (#21209)
Benjamin Peterson
2014-04-14
1
-1/+1
|
\
\
|
|
/
|
*
fix sending tuples to custom generator objects with yield from (closes #21209)
Benjamin Peterson
2014-04-14
1
-1/+1
*
|
PEP 465: a dedicated infix operator for matrix multiplication (closes #21176)
Benjamin Peterson
2014-04-10
1
-0/+24
|
/
*
Issue #20437: Fixed 22 potential bugs when deleting objects references.
Serhiy Storchaka
2014-02-09
1
-6/+3
|
\
|
*
Issue #20437: Fixed 21 potential bugs when deleting objects references.
Serhiy Storchaka
2014-02-09
1
-6/+3
*
|
Issue #14432: Remove the thread state field from the frame structure. Fix a
Victor Stinner
2013-12-13
1
-37/+42
*
|
Fix refleak introduced by 4f730c045f5f (issue #18408) and unveiled by 95eea86...
Antoine Pitrou
2013-11-23
1
-8/+4
*
|
Better behavior when stepping over yield[from]. Fixes issue 16596. By Xavier ...
Guido van Rossum
2013-11-21
1
-0/+5
*
|
Issue #19512: PRINT_EXPR bytecode now uses an identifier to get sys.displayhook
Victor Stinner
2013-11-06
1
-1/+2
*
|
merge 3.3
Benjamin Peterson
2013-10-30
1
-3/+3
|
\
\
|
|
/
|
*
update comment
Benjamin Peterson
2013-10-30
1
-3/+3
*
|
Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle
Victor Stinner
2013-10-29
1
-5/+14
*
|
Close #19199: Remove ``PyThreadState.tick_counter`` field
Victor Stinner
2013-10-09
1
-1/+0
[next]