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
*
Fixed possible abort in ceval loop if _PyUnicode_FromId() fails.
Serhiy Storchaka
2016-11-08
1
-1/+1
*
Issue #28257: Improved error message when pass a non-mapping as a var-keyword
Serhiy Storchaka
2016-10-07
1
-4/+17
*
Silence GCC warning.
Serhiy Storchaka
2016-09-22
1
-2/+2
*
Issue #26020: Fix evaluation order for set literals
Raymond Hettinger
2016-09-08
1
-2/+4
*
Fix SystemError in "raise" statement
Victor Stinner
2016-08-18
1
-1/+1
*
Issue #16191: Fix up references to renamed variables
Martin Panter
2016-07-18
1
-6/+6
*
Issue #27243: Fix __aiter__ protocol
Yury Selivanov
2016-06-09
1
-2/+38
*
fix possible refleak in MAKE_FUNCTION (closes #26991)
Benjamin Peterson
2016-05-17
1
-1/+3
*
Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF
Serhiy Storchaka
2016-04-10
1
-2/+2
*
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka
2016-04-06
1
-3/+3
*
coroutines: Error when awaiting on coroutine that's being awaited
Yury Selivanov
2016-03-02
1
-0/+15
*
Issue #4806: Avoid masking original TypeError in call with * unpacking
Martin Panter
2016-01-31
1
-8/+10
*
Issue #20440: Applied yet one patch for using Py_SETREF.
Serhiy Storchaka
2015-12-27
1
-3/+1
*
Issue #20440: Massive replacing unsafe attribute setting code with special
Serhiy Storchaka
2015-12-24
1
-4/+2
*
Issue #25556: Fix LOAD_GLOBAL bytecode when globals type is not dict and the
Victor Stinner
2015-11-05
1
-0/+4
*
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
|
/
[next]