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
*
bpo-28280: Make PyMapping_Keys(), PyMapping_Values() and PyMapping_Items() al...
Oren Milman
2017-10-08
1
-27/+49
*
bpo-31338 (#3374)
Barry Warsaw
2017-09-15
1
-1/+1
*
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow
2017-09-08
1
-0/+1
*
bpo-30721: Add missing '?' to new error message (GH-3131)
Sanyam Khurana
2017-08-18
1
-1/+1
*
bpo-30721: Show correct syntax hint in Py3 when using Py2 redirection syntax ...
Sanyam Khurana
2017-08-18
1
-0/+15
*
bpo-30730: Prevent environment variables injection in subprocess on Windows. ...
Serhiy Storchaka
2017-06-23
1
-2/+2
*
bpo-29838: Add asserts for checking results of sq_length and mq_length slots....
Serhiy Storchaka
2017-04-16
1
-9/+23
*
bpo-29548: Fix some inefficient call API usage (GH-97)
INADA Naoki
2017-02-16
1
-1/+1
*
bpo-29524: Add Objects/call.c file (#12)
Victor Stinner
2017-02-12
1
-725/+0
*
Backed out changeset f23fa1f7b68f
Victor Stinner
2017-02-10
1
-0/+725
*
Issue #29465: Add Objects/call.c file
Victor Stinner
2017-02-10
1
-725/+0
*
Issue #29507: Fix _PyObject_CallFunctionVa()
Victor Stinner
2017-02-09
1
-2/+4
*
Optimize slots: avoid temporary PyMethodObject
Victor Stinner
2017-02-09
1
-0/+35
*
Fix refleaks if Py_EnterRecursiveCall() fails
Victor Stinner
2017-02-08
1
-1/+4
*
Issue #29306: Fix usage of Py_EnterRecursiveCall()
Victor Stinner
2017-02-08
1
-48/+54
*
Issue #29360: _PyStack_AsDict() doesn't check kwnames
Victor Stinner
2017-01-24
1
-2/+1
*
_PyStack_AsDict() now checks kwnames != NULL
Victor Stinner
2017-01-18
1
-1/+3
*
Rephrase !PyErr_Occurred() comment: may=>can
Victor Stinner
2017-01-18
1
-2/+2
*
_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
[next]