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 #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
*
|
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
|
\
\
|
|
/
[next]