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 #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF
Serhiy Storchaka
2016-04-10
1
-2/+2
|
\
|
*
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
|
\
\
|
|
/
|
*
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka
2016-04-06
1
-3/+3
*
|
Merge 3.5 (issue #25888)
Yury Selivanov
2016-03-02
1
-0/+15
|
\
\
|
|
/
|
*
coroutines: Error when awaiting on coroutine that's being awaited
Yury Selivanov
2016-03-02
1
-0/+15
*
|
Switch to more idiomatic C code.
Eric V. Smith
2016-02-05
1
-3/+4
*
|
Fix issue 26287: While handling FORMAT_VALUE opcode, the top of stack was bei...
Eric V. Smith
2016-02-05
1
-2/+2
*
|
Issue #4806: Merge * unpacking fix from 3.5
Martin Panter
2016-01-31
1
-8/+10
|
\
\
|
|
/
|
*
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: Applied yet one patch for using Py_SETREF.
Serhiy Storchaka
2015-12-27
1
-3/+1
*
|
Issue #25923: Added more const qualifiers to signatures of static and private...
Serhiy Storchaka
2015-12-25
1
-2/+2
*
|
Issue #20440: Massive replacing unsafe attribute setting code with special
Serhiy Storchaka
2015-12-24
1
-4/+2
|
\
\
|
|
/
|
*
Issue #20440: Massive replacing unsafe attribute setting code with special
Serhiy Storchaka
2015-12-24
1
-4/+2
*
|
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
|
\
\
|
|
/
[next]