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
*
Fix _PyGen_yf()
Victor Stinner
2016-11-24
1
-0/+1
*
Issue #27100: Fix ref leak
Raymond Hettinger
2016-11-22
1
-1/+3
*
Issue #27100: With statement reports missing __enter__ before __exit__. (Co...
Raymond Hettinger
2016-11-22
1
-4/+4
*
Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize
Serhiy Storchaka
2016-11-20
1
-2/+2
*
Issue #28665: Harmonize STORE_DEREF with STORE_FAST and LOAD_DEREF giving a 4...
Raymond Hettinger
2016-11-11
1
-2/+3
*
Fixed possible abort in ceval loop if _PyUnicode_FromId() fails.
Serhiy Storchaka
2016-11-08
1
-2/+2
|
\
|
*
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
*
|
Issue #27243: Change PendingDeprecationWarning -> DeprecationWarning.
Yury Selivanov
2016-11-08
1
-1/+1
*
|
Issue #27358: Fix typo in error message
Berker Peksag
2016-10-02
1
-1/+1
*
|
Issue #27358: Optimized merging var-keyword arguments and improved error
Serhiy Storchaka
2016-10-02
1
-44/+54
*
|
Issue #28257: Improved error message when pass a non-iterable as
Serhiy Storchaka
2016-10-02
1
-1/+12
*
|
Issue #28086: Single var-positional argument of tuple subtype was passed
Serhiy Storchaka
2016-09-22
1
-2/+2
*
|
Document kwnames in _PyObject_FastCallKeywords() and _PyStack_AsDict()
Victor Stinner
2016-09-12
1
-0/+5
*
|
Issue #27213: Fix reference leaks
Victor Stinner
2016-09-12
1
-0/+2
*
|
Issue #27213: Fixed different issues with reworked CALL_FUNCTION* opcodes.
Serhiy Storchaka
2016-09-11
1
-84/+57
*
|
Issue #27129: Replaced wordcode related magic constants with macros.
Serhiy Storchaka
2016-09-11
1
-27/+21
*
|
DTrace support: function calls, GC activity, line execution
Łukasz Langa
2016-09-10
1
-2/+76
*
|
remove more READ_TIMESTAMP
Benjamin Peterson
2016-09-09
1
-12/+0
*
|
remove READ_TIMESTAMP macro
Benjamin Peterson
2016-09-09
1
-3/+0
*
|
remove ceval timestamp support
Benjamin Peterson
2016-09-09
1
-153/+1
*
|
Issue #27810: Add _PyCFunction_FastCallKeywords()
Victor Stinner
2016-09-09
1
-136/+28
*
|
Add _PyObject_FastCallKeywords()
Victor Stinner
2016-09-09
1
-53/+36
*
|
Rework CALL_FUNCTION* opcodes
Victor Stinner
2016-09-09
1
-287/+205
*
|
ceval: tighten the code of STORE_ANNOTATION
Yury Selivanov
2016-09-09
1
-2/+1
*
|
Issue #28003: Implement PEP 525 -- Asynchronous Generators.
Yury Selivanov
2016-09-09
1
-29/+83
*
|
Issue #27985: Implement PEP 526 -- Syntax for Variable Annotations.
Yury Selivanov
2016-09-09
1
-0/+112
*
|
Merge
Raymond Hettinger
2016-09-08
1
-2/+4
*
|
Add the co_extra field and accompanying APIs to code objects.
Brett Cannon
2016-09-07
1
-0/+14
*
|
Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation.
Serhiy Storchaka
2016-09-06
1
-0/+18
*
|
Implement the frame evaluation API aspect of PEP 523.
Brett Cannon
2016-09-05
1
-0/+7
*
|
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
Raymond Hettinger
2016-08-30
1
-6/+6
*
|
Issue #27830: Revert, remove _PyFunction_FastCallKeywords()
Victor Stinner
2016-08-25
1
-6/+6
*
|
Add _PyObject_FastCallKeywords()
Victor Stinner
2016-08-24
1
-9/+14
*
|
Use Py_ssize_t type for number of arguments
Victor Stinner
2016-08-24
1
-83/+114
*
|
PyEval_CallObjectWithKeywords() doesn't inc/decref
Victor Stinner
2016-08-22
1
-7/+1
*
|
PyEval_CallObjectWithKeywords() uses fast call with kwargs
Victor Stinner
2016-08-22
1
-12/+4
*
|
Issue #27809: Cleanup _PyEval_EvalCodeWithName()
Victor Stinner
2016-08-22
1
-15/+13
*
|
_PyFunction_FastCallDict() supports keyword args
Victor Stinner
2016-08-22
1
-9/+41
*
|
Rename _PyObject_FastCall() to _PyObject_FastCallDict()
Victor Stinner
2016-08-22
1
-2/+2
*
|
Optimize call to Python function without argument
Victor Stinner
2016-08-22
1
-11/+31
*
|
import_name() now uses fast call
Victor Stinner
2016-08-19
1
-13/+9
*
|
Fix PyObject_Call() parameter names
Victor Stinner
2016-08-19
1
-12/+13
*
|
PyEval_CallObjectWithKeywords() uses fast call
Victor Stinner
2016-08-19
1
-0/+4
*
|
Add _PyObject_FastCall()
Victor Stinner
2016-08-19
1
-46/+113
*
|
Merge 3.5 (fix raise)
Victor Stinner
2016-08-18
1
-1/+1
|
\
\
|
|
/
|
*
Fix SystemError in "raise" statement
Victor Stinner
2016-08-18
1
-1/+1
*
|
Use Py_ssize_t in _PyEval_EvalCodeWithName()
Victor Stinner
2016-08-16
1
-8/+10
[next]