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-19072: Make @classmethod support chained decorators (GH-8405)
Berker Peksag
2019-08-24
1
-0/+4
*
bpo-37812: Convert CHECK_SMALL_INT macro to a function so the return is expli...
Greg Price
2019-08-24
1
-11/+25
*
bpo-37830: Fix compilation of break and continue in finally. (GH-15320)
Serhiy Storchaka
2019-08-24
1
-7/+16
*
bpo-36311: Fixes decoding multibyte characters around chunk boundaries and im...
Steve Dower
2019-08-21
1
-6/+10
*
abstract.c should not be executable. (GH-15348)
Benjamin Peterson
2019-08-21
1
-0/+0
*
bpo-15913: Implement PyBuffer_SizeFromFormat() (GH-13873)
Joannah Nanjekye
2019-08-20
1
-0/+42
*
bpo-37732: Fix GCC warning in _PyObject_Malloc() (GH-15333)
Victor Stinner
2019-08-20
1
-21/+16
*
bpo-37540: vectorcall: keyword names must be strings (GH-14682)
Jeroen Demeyer
2019-08-16
1
-6/+19
*
bpo-37207: enable vectorcall for type.__call__ (GH-14588)
Jeroen Demeyer
2019-08-15
1
-2/+3
*
bpo-36030: Improve performance of some tuple operations (GH-12052)
Sergey Fedoseev
2019-08-14
1
-32/+71
*
bpo-37681: no_sanitize_thread support from GCC 5.1 (GH-15096)
Hai Shi
2019-08-14
1
-2/+2
*
bpo-37337: Fix a GCC 9 warning in Objects/descrobject.c (GH-14814)
Zackery Spytz
2019-08-14
1
-1/+1
*
bpo-37648: Fixed minor inconsistency in some __contains__. (GH-14904)
Serhiy Storchaka
2019-08-04
4
-6/+4
*
Fix typos in comments, docs and test names (#15018)
Min ho Kim
2019-07-30
4
-4/+4
*
bpo-37340: remove free_list for bound method objects (GH-14232)
Inada Naoki
2019-07-26
3
-96/+11
*
bpo-37543: optimize pymalloc (#14674)
Inada Naoki
2019-07-17
1
-218/+226
*
bpo-29548: no longer use PyEval_Call* functions (GH-14683)
Jeroen Demeyer
2019-07-11
1
-1/+10
*
bpo-37547: add _PyObject_CallMethodOneArg (GH-14685)
Jeroen Demeyer
2019-07-11
2
-6/+6
*
Fix compiler warning in new code. (#14690)
Tim Peters
2019-07-10
1
-1/+1
*
bpo-37537: Compute allocated blocks in _Py_GetAllocatedBlocks() (#14680)
Neil Schemenauer
2019-07-10
1
-7/+22
*
bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)
Jeroen Demeyer
2019-07-08
6
-11/+11
*
bpo-37151: remove _PyMethodDef_RawFastCall* functions (GH-14603)
Jeroen Demeyer
2019-07-05
1
-259/+0
*
bpo-36974: separate vectorcall functions for each calling convention (GH-13781)
Jeroen Demeyer
2019-07-05
3
-79/+354
*
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer
2019-07-04
15
-40/+29
*
bpo-37233: optimize method_vectorcall in case of totalargs == 0 (GH-14550)
Jeroen Demeyer
2019-07-03
1
-6/+10
*
bpo-36904: Optimize _PyStack_UnpackDict (GH-14517)
Jeroen Demeyer
2019-07-02
1
-63/+85
*
bpo-37221: Add PyCode_NewWithPosOnlyArgs to be used internally and set PyCode...
Pablo Galindo
2019-07-01
1
-15/+31
*
bpo-37337: Add _PyObject_VectorcallMethod() (GH-14228)
Jeroen Demeyer
2019-06-28
2
-7/+46
*
bpo-37417: Fix error handling in bytearray.extend. (GH-14407)
Brandt Bucher
2019-06-26
1
-0/+4
*
bpo-37388: Add PyUnicode_Decode(str, 0) fast-path (GH-14385)
Victor Stinner
2019-06-25
1
-0/+4
*
bpo-37388: Development mode check encoding and errors (GH-14341)
Victor Stinner
2019-06-25
1
-5/+63
*
bpo-24214: Fixed the UTF-8 and UTF-16 incremental decoders. (GH-14304)
Serhiy Storchaka
2019-06-25
2
-6/+10
*
bpo-36974: inherit tp_vectorcall_offset unconditionally (GH-13858)
Jeroen Demeyer
2019-06-24
2
-7/+7
*
bpo-37348: optimize decoding ASCII string (GH-14283)
Inada Naoki
2019-06-24
1
-34/+51
*
bpo-37151: remove _PyCFunction_FastCallDict (GH-14269)
Jeroen Demeyer
2019-06-20
1
-18/+0
*
bpo-36710: Use tstate in pylifecycle.c (GH-14249)
Victor Stinner
2019-06-19
1
-1/+3
*
bpo-37151: remove _PyFunction_FastCallDict (GH-13864)
Jeroen Demeyer
2019-06-18
2
-100/+1
*
bpo-37233: use _PY_FASTCALL_SMALL_STACK in method_vectorcall (GH-13974)
Jeroen Demeyer
2019-06-18
1
-5/+13
*
bpo-37151: use PyVectorcall_Call for all calls of "method" (GH-13972)
Jeroen Demeyer
2019-06-18
1
-12/+1
*
bpo-37194: Add a new public PyObject_CallNoArgs() function (GH-13890)
Victor Stinner
2019-06-17
1
-0/+8
*
bpo-36922: use Py_TPFLAGS_METHOD_DESCRIPTOR in lookup_maybe_method() (GH-13865)
Jeroen Demeyer
2019-06-17
1
-1/+1
*
bpo-37231: remove _PyObject_FastCall_Prepend (GH-14153)
Jeroen Demeyer
2019-06-17
1
-36/+0
*
closes bpo-37300: Remove unnecessary Py_XINCREF in classobject.c. (GH-14120)
Hai Shi
2019-06-16
1
-1/+1
*
bpo-37249: add declaration of _PyObject_GetMethod (GH-14015)
Jeroen Demeyer
2019-06-14
1
-3/+0
*
bpo-37231: optimize calls of special methods (GH-13973)
Jeroen Demeyer
2019-06-13
1
-72/+86
*
bpo-37257: obmalloc: stop simple arena thrashing (#14039)
Tim Peters
2019-06-13
1
-2/+7
*
bpo-37236: pragma optimize off for _Py_c_quot on Windows arm64 (GH-13983)
Paul Monson
2019-06-12
1
-0/+7
*
bpo-26219: Fix compiler warning in _PyCode_InitOpcache() (GH-13997)
Victor Stinner
2019-06-12
1
-1/+1
*
bpo-37219: Remove erroneous optimization for differencing an empty set (GH-13...
Raymond Hettinger
2019-06-11
1
-8/+0
*
bpo-37138: fix undefined behaviour with memcpy() on NULL array (GH-13867)
Jeroen Demeyer
2019-06-07
1
-1/+5
[next]