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
*
bpo-29730: replace some calls to PyNumber_Check and improve some error messag...
Oren Milman
2017-03-12
1
-15/+19
*
Fix wrapping into StopIteration of return values in generators and coroutines...
Yury Selivanov
2017-03-12
1
-2/+1
*
bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485)
Serhiy Storchaka
2017-03-12
4
-8/+8
*
bpo-20185: Convert float object implementation to Argument Clinic. (#543)
Serhiy Storchaka
2017-03-11
2
-156/+499
*
bpo-20185: Convert list object implementation to Argument Clinic. (#542)
Serhiy Storchaka
2017-03-11
2
-150/+523
*
bpo-29749: Update int() docstring (GH-565)
svelankar
2017-03-09
1
-1/+1
*
Use Py_RETURN_FALSE/Py_RETURN_TRUE rather than PyBool_FromLong(0)/PyBool_From...
Serhiy Storchaka
2017-03-08
1
-25/+25
*
bpo-29568: Disable any characters between two percents for escaped percent "%...
Serhiy Storchaka
2017-03-08
2
-17/+18
*
bpo-24329: allow __qualname__ and __classcell__ in __slots__ (GH-495)
Xiang Zhang
2017-03-08
1
-5/+11
*
bpo-29737: Optimize concatenating with empty tuple. (#524)
Serhiy Storchaka
2017-03-06
1
-0/+8
*
bpo-29695: Remove bad keyword parameters in int(), bool(), float(), list() an...
Serhiy Storchaka
2017-03-06
5
-39/+13
*
bpo-29714: Fix a regression that bytes format may fail when containing zero ...
Xiang Zhang
2017-03-06
1
-2/+2
*
remove 3 redundant casts in Objects/longobject.c (#445)
orenmn
2017-03-06
1
-3/+3
*
bpo-29695: Deprecated using bad named keyword arguments in builtings: (#486)
Serhiy Storchaka
2017-03-05
5
-0/+30
*
bpo-29683 - Fixes to _PyCode_SetExtra when co_extra->ce->extras is (#376)
Brian Coleman
2017-03-02
1
-10/+14
*
bpo-29684: Fix regression of PyEval_CallObjectWithKeywords (GH-87)
INADA Naoki
2017-03-01
1
-6/+7
*
Document why functools.partial() must copy kwargs (#253)
Victor Stinner
2017-02-23
1
-2/+2
*
bpo-27660: remove unnecessary overflow checks in list_resize (GH-189)
Xiang Zhang
2017-02-22
1
-12/+7
*
bpo-29509: skip redundant intern (GH-197)
INADA Naoki
2017-02-21
1
-1/+1
*
bpo-29602: fix signed zero handling in complex constructor. (#203)
Mark Dickinson
2017-02-20
1
-3/+3
*
bpo-24274: fix erroneous comment in dictobject.c (GH-196)
INADA Naoki
2017-02-20
1
-1/+2
*
bpo-29347: Fix possibly dereferencing undefined pointers when creating weakre...
Xiang Zhang
2017-02-20
1
-0/+2
*
bpo-29548: Fix some inefficient call API usage (GH-97)
INADA Naoki
2017-02-16
4
-30/+17
*
bpo-29524: Add Objects/call.c file (#12)
Victor Stinner
2017-02-12
3
-1048/+1368
*
bpo-29438: fixed use-after-free in key sharing dict (#17)
INADA Naoki
2017-02-12
1
-3/+7
*
Backed out changeset f23fa1f7b68f
Victor Stinner
2017-02-10
3
-1368/+1048
*
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
[next]