summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* [3.8] bpo-36974: separate vectorcall functions for each calling convention (G...Jeroen Demeyer2019-07-233-78/+354
* bpo-37233: optimize method_vectorcall in case of totalargs == 0 (GH-14550)Miss Islington (bot)2019-07-031-6/+10
* [3.8] bpo-37233: use _PY_FASTCALL_SMALL_STACK in method_vectorcall (GH-13974)Inada Naoki2019-07-031-5/+13
* Stop using Argument Clinic for dict_pop (GH-13935)Inada Naoki2019-07-022-50/+28
* bpo-37221: Add PyCode_NewWithPosOnlyArgs to be used internally and set PyCode...Miss Islington (bot)2019-07-011-15/+31
* bpo-37417: Fix error handling in bytearray.extend. (GH-14407)Miss Islington (bot)2019-06-261-0/+4
* bpo-24214: Fixed the UTF-8 and UTF-16 incremental decoders. (GH-14304)Miss Islington (bot)2019-06-252-6/+10
* bpo-36974: inherit tp_vectorcall_offset unconditionally (GH-13858) (GH-14342)Miss Islington (bot)2019-06-252-7/+7
* bpo-36922: use Py_TPFLAGS_METHOD_DESCRIPTOR in lookup_maybe_method() (GH-13865)Miss Islington (bot)2019-06-171-1/+1
* bpo-37236: pragma optimize off for _Py_c_quot on Windows arm64 (GH-13983)Miss Islington (bot)2019-06-121-0/+7
* bpo-26219: Fix compiler warning in _PyCode_InitOpcache() (GH-13997) (GH-14000)Miss Islington (bot)2019-06-121-1/+1
* bpo-37219: Remove erroneous optimization for differencing an empty set (GH-13...Miss Islington (bot)2019-06-111-8/+0
* bpo-37138: fix undefined behaviour with memcpy() on NULL array (GH-13867)Miss Islington (bot)2019-06-071-1/+5
* [3.8] bpo-37170: Fix the cast on error in PyLong_AsUnsignedLongLongMask() (GH...Zackery Spytz2019-06-071-2/+2
* bpo-26219: Fix compiler warning in _PyCode_InitOpcache() (GH-13809)Victor Stinner2019-06-041-1/+2
* bpo-26219: per opcode cache for LOAD_GLOBAL (GH-12884)Inada Naoki2019-06-032-12/+78
* bpo-36027: Really fix "incompatible pointer type" compiler warning (GH-13761)Petr Viktorin2019-06-031-1/+1
* bpo-36974: add some assertions for PEP 590 (GH-13682)Jeroen Demeyer2019-06-021-0/+14
* bpo-37012: Clean up special cases in PyType_FromSpecWithBases slot assignment...Petr Viktorin2019-06-021-9/+11
* bpo-36027 bpo-36974: Fix "incompatible pointer type" compiler warnings (GH-13...Petr Viktorin2019-06-021-1/+1
* bpo-36974: Make tp_call=PyVectorcall_Call work for inherited types (GH-13699)Petr Viktorin2019-06-022-11/+25
* Call PyObject_GC_UnTrack in structseq dealloc (GH-13751)Pablo Galindo2019-06-021-0/+1
* bpo-37126: Allow structseq objects to be tracked by the GC (GH-13729)Pablo Galindo2019-06-021-2/+18
* bpo-36027: Extend three-argument pow to negative second argument (GH-13266)Mark Dickinson2019-06-021-12/+118
* bpo-20092. Use __index__ in constructors of int, float and complex. (GH-13108)Serhiy Storchaka2019-06-013-3/+31
* bpo-36842: Pass positional only parameters to code_new audit hook (GH-13707)Pablo Galindo2019-06-011-3/+3
* Improve exception message for str.format (GH-12675)Francisco Couzo2019-06-011-2/+7
* bpo-37122: Make co->co_argcount represent the total number of positonal argum...Pablo Galindo2019-06-013-11/+10
* Improve docstring of list.sort (GH-8516)Tim Hoffmann2019-06-012-4/+20
* bpo-37029: keep usable_arenas in sorted order without searching (#13612)Tim Peters2019-06-011-32/+77
* bpo-37108: Support super with methods that use positional-only arguments (GH-...Pablo Galindo2019-05-311-1/+1
* bpo-36379: __ipow__ must be a ternaryfunc, not a binaryfunc (GH-13546)Zackery Spytz2019-05-311-1/+1
* bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...Jeroen Demeyer2019-05-3135-156/+155
* bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653)Jeroen Demeyer2019-05-304-11/+11
* bpo-36974: remove _PyObject_HasFastCall (GH-13460)Jeroen Demeyer2019-05-301-16/+0
* bpo-36974: inherit the vectorcall protocol (GH-13498)Jeroen Demeyer2019-05-301-0/+11
* bpo-32388: Remove cross-version binary compatibility requirement in tp_flags ...Antoine Pitrou2019-05-293-17/+8
* bpo-22385: Support output separators in hex methods. (#13578)Gregory P. Smith2019-05-296-26/+303
* bpo-36974: implement PEP 590 (GH-13185)Jeroen Demeyer2019-05-295-111/+169
* remove unnecessary tp_dealloc (GH-13647)Inada Naoki2019-05-294-30/+4
* bpo-26423: Fix possible overflow in wrap_lenfunc() (GH-13606)Zackery Spytz2019-05-281-1/+1
* bpo-36922: implement PEP-590 Py_TPFLAGS_METHOD_DESCRIPTOR (GH-13338)Jeroen Demeyer2019-05-284-6/+17
* bpo-36763: Implement the PEP 587 (GH-13592)Victor Stinner2019-05-278-56/+56
* bpo-36785: PEP 574 implementation (GH-7076)Antoine Pitrou2019-05-262-0/+220
* bpo-28866: No type cache for types with specialized mro, invalidation is hard...Julien Palard2019-05-261-8/+30
* bpo-37017: PyObject_CallMethodObjArgs uses LOAD_METHOD optimization (GH-13516)Michael J. Sullivan2019-05-261-16/+29
* bpo-37032: Add CodeType.replace() method (GH-13542)Victor Stinner2019-05-242-4/+331
* bpo-20285: Improve help docs for object (GH-4759)Cheryl Sabella2019-05-241-1/+6
* bpo-36842: Implement PEP 578 (GH-12613)Steve Dower2019-05-236-1/+142
* bpo-35091: Objects/listobject.c: Replace overflow checks in gallop fu… (GH-...Alexey Izbyshev2019-05-231-8/+4