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-39489: Remove COUNT_ALLOCS special build (GH-18259)
Victor Stinner
2020-02-03
5
-234/+0
*
bpo-36051: Fix compiler warning. (GH-18325)
Inada Naoki
2020-02-03
1
-1/+1
*
Fix 5-space indentation and trailing whitespace (GH-18311)
Mark Dickinson
2020-02-02
1
-11/+11
*
bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254)
Hai Shi
2020-01-30
8
-22/+17
*
bpo-39434: Improve float __floordiv__ performance and error message (GH-18147)
Dong-hee Na
2020-01-30
1
-31/+39
*
bpo-38631: Add _Py_NO_RETURN to functions calling Py_FatalError() (GH-18278)
Victor Stinner
2020-01-30
2
-4/+4
*
bpo-38631: Avoid Py_FatalError() in unicodeobject.c (GH-18281)
Victor Stinner
2020-01-30
1
-23/+28
*
bpo-38631: Replace tp_new_wrapper() fatal error with SystemError (GH-18262)
Victor Stinner
2020-01-30
1
-2/+6
*
bpo-38631: Avoid Py_FatalError() in init_slotdefs() (GH-18263)
Victor Stinner
2020-01-30
2
-16/+25
*
bpo-38631: Replace Py_FatalError() with _PyObject_ASSERT_FAILED_MSG() (GH-18258)
Victor Stinner
2020-01-30
2
-32/+32
*
Remove deadcode in _Py_inc_count() (GH-18257)
Victor Stinner
2020-01-29
1
-2/+0
*
bpo-36051: Drop GIL during large bytes.join() (GH-17757)
Bruce Merry
2020-01-29
1
-17/+40
*
bpo-38631: Avoid Py_FatalError() in PyCode_New() (GH-18215)
Victor Stinner
2020-01-27
1
-26/+46
*
bpo-38631: Avoid Py_FatalError() in _memory_release() (GH-18214)
Victor Stinner
2020-01-27
1
-1/+2
*
bpo-38631: Avoid Py_FatalError() in PyModule_Create2() (GH-18212)
Victor Stinner
2020-01-27
1
-2/+5
*
bpo-39453: Add testcase for bpo-39453 (GH-18202)
Dong-hee Na
2020-01-27
1
-1/+1
*
bpo-39453: Make list.__contains__ hold strong references to avoid crashes (GH...
Dong-hee Na
2020-01-27
1
-1/+6
*
bpo-39425: Fix list.count performance regression (GH-18119)
Dong-hee Na
2020-01-22
1
-0/+4
*
closes bpo-39415: Remove unused codes from longobject.c complexobject.c float...
Dong-hee Na
2020-01-22
3
-68/+0
*
bpo-33387: Fix compiler warning in frame_block_unwind() (GH-18099)
Victor Stinner
2020-01-21
1
-1/+1
*
bpo-39386: Prevent double awaiting of async iterator (GH-18081)
Andrew Svetlov
2020-01-20
1
-4/+12
*
bpo-39372: Clean header files of declared interfaces with no implementations ...
Pablo Galindo
2020-01-18
5
-13/+0
*
bpo-31031: Unify duplicate bits_in_digit and bit_length (GH-2866)
Niklas Fiekas
2020-01-16
1
-29/+9
*
bpo-39200: Correct the error message for range() empty constructor (GH-17813)
Pablo Galindo
2020-01-05
1
-29/+44
*
Document CodeType.replace (GH-17776)
Anthony Sottile
2020-01-01
2
-4/+4
*
bpo-38588: Optimize list comparison. (GH-17766)
Inada Naoki
2019-12-31
1
-0/+3
*
bpo-38588: Fix possible crashes in dict and list when calling PyObject_RichCo...
Dong-hee Na
2019-12-31
2
-0/+9
*
bpo-38610: Fix possible crashes in several list methods (GH-17022)
Zackery Spytz
2019-12-30
1
-3/+12
*
closes bpo-30364: Replace deprecated no_address_safety_analysis attribute. (G...
Batuhan Taşkaya
2019-12-27
1
-7/+7
*
bpo-38858: Small integer per interpreter (GH-17315)
Victor Stinner
2019-12-17
1
-31/+28
*
bpo-38629: implement __floor__ and __ceil__ for float type (GH-16985)
Batuhan Taşkaya
2019-12-15
2
-1/+67
*
bpo-27961: Replace PY_LLONG_MAX, PY_LLONG_MIN and PY_ULLONG_MAX with standard...
Sergey Fedoseev
2019-12-05
1
-5/+5
*
Fix compiler warning in Objects/unicodeobject.c (GH-17440)
Pablo Galindo
2019-12-02
1
-1/+1
*
bpo-38922: Raise code.__new__ audit event when code object replace() is calle...
Steve Dower
2019-11-27
1
-0/+7
*
bpo-27145: small_ints[x] could be returned in long_add and long_sub (GH-15716)
HongWeipeng
2019-11-26
1
-7/+9
*
bpo-38896: Remove PyUnicode_ClearFreeList() function (GH-17354)
Victor Stinner
2019-11-23
1
-9/+0
*
bpo-38858: Call _PyUnicode_Fini() in Py_EndInterpreter() (GH-17330)
Victor Stinner
2019-11-22
1
-16/+19
*
Produce cleaner bytecode for 'with' and 'async with' by generating separate c...
Mark Shannon
2019-11-21
1
-172/+378
*
bpo-38858: Allocate small integers on the heap (GH-17301)
Victor Stinner
2019-11-21
1
-36/+19
*
bpo-37340: Remove PyMethod_ClearFreeList() and PyCFunction_ClearFreeList() (G...
Victor Stinner
2019-11-20
2
-29/+0
*
bpo-36854: Move _PyRuntimeState.gc to PyInterpreterState (GH-17287)
Victor Stinner
2019-11-20
1
-7/+13
*
bpo-38835: Don't use PyFPE_START_PROTECT and PyFPE_END_PROTECT (GH-17231)
Victor Stinner
2019-11-20
2
-32/+0
*
bpo-35409: Ignore GeneratorExit in async_gen_athrow_throw (GH-14755)
Vincent Michel
2019-11-19
1
-0/+11
*
bpo-38631: Avoid Py_FatalError() in float.__getformat__() (GH-17232)
Victor Stinner
2019-11-18
1
-1/+2
*
bpo-38650: Constify PyStructSequence_UnnamedField. (GH-17005)
Serhiy Storchaka
2019-11-16
1
-1/+1
*
bpo-38644: Add _PyEval_EvalCode() (GH-17183)
Victor Stinner
2019-11-16
1
-26/+29
*
bpo-38644: Add _PyObject_Call() (GH-17089)
Victor Stinner
2019-11-14
2
-112/+146
*
bpo-38644: Add _PyEval_EvalFrame() with tstate (GH-17131)
Victor Stinner
2019-11-14
2
-2/+4
*
bpo-38644: Add _PyObject_VectorcallTstate() (GH-17052)
Victor Stinner
2019-11-08
3
-22/+35
*
bpo-38613: Optimize set operations of dict keys. (GH-16961)
Inada Naoki
2019-11-07
1
-21/+33
[prev]
[next]