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-26219: per opcode cache for LOAD_GLOBAL (GH-12884)
Inada Naoki
2019-06-03
2
-12/+78
*
bpo-36027: Really fix "incompatible pointer type" compiler warning (GH-13761)
Petr Viktorin
2019-06-03
1
-1/+1
*
bpo-36974: add some assertions for PEP 590 (GH-13682)
Jeroen Demeyer
2019-06-02
1
-0/+14
*
bpo-37012: Clean up special cases in PyType_FromSpecWithBases slot assignment...
Petr Viktorin
2019-06-02
1
-9/+11
*
bpo-36027 bpo-36974: Fix "incompatible pointer type" compiler warnings (GH-13...
Petr Viktorin
2019-06-02
1
-1/+1
*
bpo-36974: Make tp_call=PyVectorcall_Call work for inherited types (GH-13699)
Petr Viktorin
2019-06-02
2
-11/+25
*
Call PyObject_GC_UnTrack in structseq dealloc (GH-13751)
Pablo Galindo
2019-06-02
1
-0/+1
*
bpo-37126: Allow structseq objects to be tracked by the GC (GH-13729)
Pablo Galindo
2019-06-02
1
-2/+18
*
bpo-36027: Extend three-argument pow to negative second argument (GH-13266)
Mark Dickinson
2019-06-02
1
-12/+118
*
bpo-20092. Use __index__ in constructors of int, float and complex. (GH-13108)
Serhiy Storchaka
2019-06-01
3
-3/+31
*
bpo-36842: Pass positional only parameters to code_new audit hook (GH-13707)
Pablo Galindo
2019-06-01
1
-3/+3
*
Improve exception message for str.format (GH-12675)
Francisco Couzo
2019-06-01
1
-2/+7
*
bpo-37122: Make co->co_argcount represent the total number of positonal argum...
Pablo Galindo
2019-06-01
3
-11/+10
*
Improve docstring of list.sort (GH-8516)
Tim Hoffmann
2019-06-01
2
-4/+20
*
bpo-37029: keep usable_arenas in sorted order without searching (#13612)
Tim Peters
2019-06-01
1
-32/+77
*
bpo-37108: Support super with methods that use positional-only arguments (GH-...
Pablo Galindo
2019-05-31
1
-1/+1
*
bpo-36379: __ipow__ must be a ternaryfunc, not a binaryfunc (GH-13546)
Zackery Spytz
2019-05-31
1
-1/+1
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-31
35
-156/+155
*
bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653)
Jeroen Demeyer
2019-05-30
4
-11/+11
*
bpo-36974: remove _PyObject_HasFastCall (GH-13460)
Jeroen Demeyer
2019-05-30
1
-16/+0
*
bpo-36974: inherit the vectorcall protocol (GH-13498)
Jeroen Demeyer
2019-05-30
1
-0/+11
*
bpo-32388: Remove cross-version binary compatibility requirement in tp_flags ...
Antoine Pitrou
2019-05-29
3
-17/+8
*
bpo-22385: Support output separators in hex methods. (#13578)
Gregory P. Smith
2019-05-29
6
-26/+303
*
bpo-36974: implement PEP 590 (GH-13185)
Jeroen Demeyer
2019-05-29
5
-111/+169
*
remove unnecessary tp_dealloc (GH-13647)
Inada Naoki
2019-05-29
4
-30/+4
*
bpo-26423: Fix possible overflow in wrap_lenfunc() (GH-13606)
Zackery Spytz
2019-05-28
1
-1/+1
*
bpo-36922: implement PEP-590 Py_TPFLAGS_METHOD_DESCRIPTOR (GH-13338)
Jeroen Demeyer
2019-05-28
4
-6/+17
*
bpo-36763: Implement the PEP 587 (GH-13592)
Victor Stinner
2019-05-27
8
-56/+56
*
bpo-36785: PEP 574 implementation (GH-7076)
Antoine Pitrou
2019-05-26
2
-0/+220
*
bpo-28866: No type cache for types with specialized mro, invalidation is hard...
Julien Palard
2019-05-26
1
-8/+30
*
bpo-37017: PyObject_CallMethodObjArgs uses LOAD_METHOD optimization (GH-13516)
Michael J. Sullivan
2019-05-26
1
-16/+29
*
bpo-37032: Add CodeType.replace() method (GH-13542)
Victor Stinner
2019-05-24
2
-4/+331
*
bpo-20285: Improve help docs for object (GH-4759)
Cheryl Sabella
2019-05-24
1
-1/+6
*
bpo-36842: Implement PEP 578 (GH-12613)
Steve Dower
2019-05-23
6
-1/+142
*
bpo-35091: Objects/listobject.c: Replace overflow checks in gallop fu… (GH-...
Alexey Izbyshev
2019-05-23
1
-8/+4
*
bpo-36907: fix refcount bug in _PyStack_UnpackDict() (GH-13381)
Jeroen Demeyer
2019-05-22
1
-5/+12
*
closes bpo-36951: Correct some types in the type_members struct in typeobject...
Zackery Spytz
2019-05-20
1
-3/+3
*
bpo-36957: Add _PyLong_Rshift() and _PyLong_Lshift(). (GH-13416)
Serhiy Storchaka
2019-05-19
2
-30/+77
*
Fix couple of dead code paths (GH-7418)
David Carlier
2019-05-17
2
-3/+0
*
bpo-36763: Add _PyInitError functions (GH-13395)
Victor Stinner
2019-05-17
2
-0/+2
*
bpo-36763: Add PyMemAllocatorName (GH-13387)
Victor Stinner
2019-05-17
1
-14/+59
*
Fix typo in _PyMethodDef_RawFastCallKeywords error message (GH-13343)
Jeroen Demeyer
2019-05-17
1
-1/+1
*
bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375)
Zackery Spytz
2019-05-17
4
-4/+8
*
bpo-36900: Replace global conf vars with config (GH-13299)
Victor Stinner
2019-05-14
3
-7/+15
*
bpo-27987: pymalloc: align by 16bytes on 64bit platform (GH-12850)
Inada Naoki
2019-05-14
1
-0/+6
*
bpo-35983: skip trashcan for subclasses (GH-11841)
Jeroen Demeyer
2019-05-10
7
-95/+14
*
bpo-36869: fix warning of unused variables (GH-13182)
Emmanuel Arias
2019-05-10
1
-1/+2
*
Fix a possible crash due to PyType_FromSpecWithBases() (GH-10304)
Zackery Spytz
2019-05-09
1
-0/+1
*
closes bpo-36861: Update Unicode database to 12.1.0. (GH-13214)
Benjamin Peterson
2019-05-09
1
-1/+1
*
bpo-36793: Remove unneeded __str__ definitions. (GH-13081)
Serhiy Storchaka
2019-05-06
4
-4/+4
[next]