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
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #29465: Add Objects/call.c file
Victor Stinner
2017-02-10
3
-1048/+1368
*
Issue #29507: Fix _PyObject_CallFunctionVa()
Victor Stinner
2017-02-09
1
-2/+4
*
Optimize slots: avoid temporary PyMethodObject
Victor Stinner
2017-02-09
2
-58/+160
*
Fix PyCFunction_Call() performance issue
Victor Stinner
2017-02-09
1
-4/+50
*
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
2
-73/+90
*
Issue #29460: _PyArg_NoKeywords(), _PyArg_NoStackKeywords() and
Serhiy Storchaka
2017-02-06
1
-3/+2
*
Reduce load factor (from 66% to 60%) to improve effectiveness of linear probing.
Raymond Hettinger
2017-02-04
1
-3/+3
*
Issue #29311: Regenerate Argument Clinic.
Serhiy Storchaka
2017-02-04
2
-3/+3
*
Issue #29263: LOAD_METHOD support for C methods
INADA Naoki
2017-02-02
3
-25/+70
*
Remove unnecessary variables.
Raymond Hettinger
2017-02-02
1
-5/+2
*
Issue #29421: Make int.to_bytes() and int.from_bytes() slightly faster
Serhiy Storchaka
2017-02-02
1
-4/+7
*
Issue #20185: Converted the int class to Argument Clinic.
Serhiy Storchaka
2017-02-01
2
-135/+303
*
Issue #29383: reduce temporary interned unicode
INADA Naoki
2017-01-28
1
-3/+10
*
Issue #29358: Add postcondition checks on types
Victor Stinner
2017-01-25
1
-3/+24
*
Issue #27867: Function PySlice_GetIndicesEx() is deprecated and replaced with
Serhiy Storchaka
2017-01-25
1
-24/+54
|
\
|
*
Issue #27867: Function PySlice_GetIndicesEx() is replaced with a macro if
Serhiy Storchaka
2017-01-25
1
-24/+54
|
|
\
|
|
*
Issue #27867: Function PySlice_GetIndicesEx() is replaced with a macro if
Serhiy Storchaka
2017-01-25
1
-24/+54
*
|
|
Issues #29311, #29289: Fixed and improved docstrings for dict and OrderedDict
Serhiy Storchaka
2017-01-24
4
-34/+36
*
|
|
Issue #29337: Fixed possible BytesWarning when compare the code objects.
Serhiy Storchaka
2017-01-24
1
-3/+3
|
\
\
\
|
|
/
/
|
*
|
Issue #29337: Fixed possible BytesWarning when compare the code objects.
Serhiy Storchaka
2017-01-24
1
-3/+3
|
|
\
\
|
|
|
/
|
|
*
Issue #29337: Fixed possible BytesWarning when compare the code objects.
Serhiy Storchaka
2017-01-24
1
-3/+3
*
|
|
Issue #29360: _PyStack_AsDict() doesn't check kwnames
Victor Stinner
2017-01-24
1
-2/+1
*
|
|
Fix grammar in doc string, RST markup
Martin Panter
2017-01-24
2
-4/+4
*
|
|
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka
2017-01-23
1
-4/+2
*
|
|
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka
2017-01-23
9
-51/+25
*
|
|
Issue #28769: The result of PyUnicode_AsUTF8AndSize() and PyUnicode_AsUTF8()
Serhiy Storchaka
2017-01-22
2
-6/+6
*
|
|
Issue #29331: Simplified argument parsing in sorted() and list.sort().
Serhiy Storchaka
2017-01-21
1
-15/+15
*
|
|
Issue #29289: Argument Clinic generates reasonable name for the parameter "de...
Serhiy Storchaka
2017-01-19
2
-14/+14
*
|
|
Issue #29311: Argument Clinic generates reasonable name for the parameter "de...
Serhiy Storchaka
2017-01-19
2
-17/+19
*
|
|
Issue #20186: Converted builtins enumerate() and reversed() to Argument Clinic.
Serhiy Storchaka
2017-01-19
2
-39/+121
*
|
|
Add a note explaining why dict_update() doesn't use METH_FASTCALL
Victor Stinner
2017-01-19
1
-0/+3
*
|
|
dict.get() and dict.setdefault() now use AC
Victor Stinner
2017-01-19
2
-25/+98
*
|
|
_PyStack_AsDict() now checks kwnames != NULL
Victor Stinner
2017-01-18
1
-1/+3
*
|
|
Cleanup _PyMethodDef_RawFastCallDict()
Victor Stinner
2017-01-18
1
-11/+9
*
|
|
Rephrase !PyErr_Occurred() comment: may=>can
Victor Stinner
2017-01-18
4
-6/+6
*
|
|
_PyObject_FastCallKeywords() now checks !PyErr_Occurred()
Victor Stinner
2017-01-18
1
-0/+5
*
|
|
PyCFunction_Call() now calls _PyCFunction_FastCallDict()
Victor Stinner
2017-01-18
1
-70/+5
*
|
|
Fix _PyMethodDef_RawFastCallDict() argument parsing
Victor Stinner
2017-01-18
1
-14/+16
*
|
|
_PyObject_FastCallKeywords() now checks the result
Victor Stinner
2017-01-18
1
-0/+2
*
|
|
Optimize methoddescr_call(): avoid temporary PyCFunction
Victor Stinner
2017-01-18
2
-26/+33
*
|
|
Remove unused func parameter of _PyStack_UnpackDict()
Victor Stinner
2017-01-18
2
-3/+2
*
|
|
Convert some OrderedDict methods to Argument Clinic
Victor Stinner
2017-01-17
2
-87/+219
*
|
|
Run Argument Clinic: METH_VARARGS=>METH_FASTCALL
Victor Stinner
2017-01-17
5
-37/+77
*
|
|
Run Argument Clinic: METH_VARARGS=>METH_FASTCALL
Victor Stinner
2017-01-17
3
-39/+87
*
|
|
_PyStack_UnpackDict() now returns -1 on error
Victor Stinner
2017-01-17
2
-9/+11
*
|
|
Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywords
Victor Stinner
2017-01-17
4
-16/+16
*
|
|
type_prepare() now uses fast call (METH_FASTCALL)
Victor Stinner
2017-01-16
1
-2/+3
*
|
|
Add _PyStack_AsTupleSlice() helper
Victor Stinner
2017-01-16
1
-0/+23
*
|
|
Optimize _PyCFunction_FastCallKeywords()
Victor Stinner
2017-01-16
1
-36/+131
[next]