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
/
Objects
/
abstract.c
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
_PyObject_FastCallKeywords() now checks !PyErr_Occurred()
Victor Stinner
2017-01-18
1
-0/+5
*
_PyObject_FastCallKeywords() now checks the result
Victor Stinner
2017-01-18
1
-0/+2
*
Remove unused func parameter of _PyStack_UnpackDict()
Victor Stinner
2017-01-18
1
-1/+1
*
_PyStack_UnpackDict() now returns -1 on error
Victor Stinner
2017-01-17
1
-7/+9
*
Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywords
Victor Stinner
2017-01-17
1
-1/+1
*
Add _PyStack_AsTupleSlice() helper
Victor Stinner
2017-01-16
1
-0/+23
*
Disable _PyStack_AsTuple() inlining
Victor Stinner
2017-01-11
1
-1/+3
*
call_method() now uses _PyObject_FastCall()
Victor Stinner
2017-01-10
1
-5/+5
*
Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of ...
Serhiy Storchaka
2016-12-16
1
-2/+1
*
Use _PyDict_NewPresized() in _PyStack_AsDict()
Victor Stinner
2016-12-15
1
-1/+1
*
Add _PY_FASTCALL_SMALL_STACK constant
Victor Stinner
2016-12-15
1
-3/+3
*
Fix _PyObject_CallFunctionVa(), use the small stack
Victor Stinner
2016-12-15
1
-2/+1
*
Issue #28820: Merge typo fixes from 3.6
Martin Panter
2016-12-10
1
-1/+1
|
\
|
*
Fix typos in comment and documentation
Martin Panter
2016-12-10
1
-1/+1
*
|
Remove useless variable initialization
Victor Stinner
2016-12-09
1
-9/+6
*
|
Use PyObject_CallFunctionObjArgs()
Victor Stinner
2016-12-09
1
-1/+1
*
|
Add _PyObject_VaCallFunctionObjArgs() private function
Victor Stinner
2016-12-08
1
-5/+5
*
|
_PyObject_CallFunctionVa() uses fast call
Victor Stinner
2016-12-08
1
-9/+25
*
|
Add _PyObject_CallFunctionVa() helper
Victor Stinner
2016-12-08
1
-54/+29
*
|
Add _PyObject_FastCallVa() helper
Victor Stinner
2016-12-08
1
-71/+37
*
|
_PyObject_FastCallKeywords() now calls directly tp_call
Victor Stinner
2016-12-06
1
-15/+45
*
|
Fix typo in a comment of abstract.c
Victor Stinner
2016-12-06
1
-1/+1
*
|
Use _PyObject_CallNoArg()
Victor Stinner
2016-12-06
1
-1/+1
*
|
Uniformize argument names of "call" functions
Victor Stinner
2016-12-06
1
-70/+78
*
|
Issue #28858: Remove _PyObject_CallArg1() macro
Victor Stinner
2016-12-05
1
-1/+1
*
|
Backed out changeset b9c9691c72c5
Victor Stinner
2016-12-04
1
-4/+4
*
|
Replace PyObject_CallFunctionObjArgs() with fastcall
Victor Stinner
2016-12-01
1
-4/+4
*
|
Backed out changeset 7efddbf1aa70
Victor Stinner
2016-11-30
1
-62/+60
*
|
Uniformize argument names of "call" functions
Victor Stinner
2016-11-29
1
-60/+62
*
|
Issue #19569: Compiler warnings are now emitted if use most of deprecated
Serhiy Storchaka
2016-11-20
1
-11/+17
|
/
*
Issue #28410: Added _PyErr_FormatFromCause() -- the helper for raising
Serhiy Storchaka
2016-10-21
1
-12/+10
*
remove unneeded cast
Benjamin Peterson
2016-09-23
1
-1/+1
*
va_end() all va_copy()ed va_lists.
Christian Heimes
2016-09-21
1
-0/+2
*
replace usage of Py_VA_COPY with the (C99) standard va_copy
Benjamin Peterson
2016-09-21
1
-1/+1
*
Issue #28126: Replace Py_MEMCPY with memcpy(). Visual Studio can properly opt...
Christian Heimes
2016-09-13
1
-2/+2
*
Document kwnames in _PyObject_FastCallKeywords() and _PyStack_AsDict()
Victor Stinner
2016-09-12
1
-0/+3
*
Revert change f860b7a775c5
Victor Stinner
2016-09-12
1
-19/+7
*
ssue #27213: Reintroduce checks in _PyStack_AsDict()
Victor Stinner
2016-09-12
1
-7/+19
*
Issue #27213: Fixed different issues with reworked CALL_FUNCTION* opcodes.
Serhiy Storchaka
2016-09-11
1
-19/+7
*
Add METH_FASTCALL calling convention
Victor Stinner
2016-09-10
1
-0/+56
*
Issue #27810: Add _PyCFunction_FastCallKeywords()
Victor Stinner
2016-09-09
1
-2/+5
*
Add _PyObject_FastCallKeywords()
Victor Stinner
2016-09-09
1
-0/+68
*
Issue #27078: Added BUILD_STRING opcode. Optimized f-strings evaluation.
Serhiy Storchaka
2016-09-06
1
-1/+19
*
Issue #27830: Remove unused _PyStack_AsDict()
Victor Stinner
2016-09-05
1
-34/+0
*
Issue #27830: Revert, remove _PyFunction_FastCallKeywords()
Victor Stinner
2016-08-25
1
-45/+0
*
method_call() and slot_tp_new() now uses fast call
Victor Stinner
2016-08-24
1
-0/+39
*
Issue #27830: Fix _PyObject_FastCallKeywords()
Victor Stinner
2016-08-24
1
-1/+1
*
_PyObject_FastCallDict(): avoid _Py_CheckFunctionResult()
Victor Stinner
2016-08-24
1
-2/+2
*
Add _PyObject_FastCallKeywords()
Victor Stinner
2016-08-24
1
-0/+79
*
Use Py_ssize_t type for number of arguments
Victor Stinner
2016-08-24
1
-1/+1
[prev]
[next]