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
*
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
*
|
Issue #27128: Cleanup _PyEval_EvalCodeWithName()
Victor Stinner
2016-08-16
1
-11/+43
*
|
Issue #22557: Now importing already imported modules is up to 2.5 times faster.
Serhiy Storchaka
2016-08-02
1
-28/+51
*
|
Issue #16191: Merge comment fixes from 3.5
Martin Panter
2016-07-18
1
-6/+6
|
\
\
|
|
/
|
*
Issue #16191: Fix up references to renamed variables
Martin Panter
2016-07-18
1
-6/+6
*
|
Issue #27352: Correct the validation of the ImportFrom AST node and simplify
Serhiy Storchaka
2016-06-27
1
-9/+1
*
|
Issue #27255: Added more predictions in ceval.c.
Serhiy Storchaka
2016-06-27
1
-2/+12
*
|
Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes.
Serhiy Storchaka
2016-06-12
1
-102/+22
*
|
Issue #27140: Added BUILD_CONST_KEY_MAP opcode.
Serhiy Storchaka
2016-06-11
1
-0/+33
*
|
Merge 3.5 (issue #27243)
Yury Selivanov
2016-06-09
1
-2/+38
|
\
\
|
|
/
|
*
Issue #27243: Fix __aiter__ protocol
Yury Selivanov
2016-06-09
1
-2/+38
*
|
Fixed the use of _Py_IS_ALIGNED (issue #27097).
Serhiy Storchaka
2016-05-25
1
-1/+1
*
|
Issue #27097: Python interpreter is now about 7% faster due to optimized
Serhiy Storchaka
2016-05-25
1
-29/+45
*
|
Issue #26647: Python interpreter now uses 16-bit wordcode instead of bytecode.
Serhiy Storchaka
2016-05-24
1
-74/+57
*
|
merge 3.5 (#26991)
Benjamin Peterson
2016-05-17
1
-1/+3
|
\
\
|
|
/
|
*
fix possible refleak in MAKE_FUNCTION (closes #26991)
Benjamin Peterson
2016-05-17
1
-1/+3
*
|
Issue #18531: Single var-keyword argument of dict subtype was passed
Serhiy Storchaka
2016-05-08
1
-1/+1
*
|
Issue #26802: Optimized calling a function with *args only positional arguments.
Serhiy Storchaka
2016-04-19
1
-0/+15
*
|
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
[next]