Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
cpython3
/
b6ef8f2beb90678a4a54218d6169040afbbf9fe1
/
Objects
353053d
[3.8] bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630) (GH-15635)
by Serhiy Storchaka
· 5 years ago
4bd1d05
Fix typos mostly in comments, docs and test names (GH-15209)
by Miss Islington (bot)
· 5 years ago
96631dc
[3.8] bpo-37034: Display argument name on errors with keyword arguments with Argument Clinic. (GH-13593). (GH-15599)
by Serhiy Storchaka
· 5 years ago
d5ba8bb
Fix unused variable and signed/unsigned warnings (GH-15537) (GH-15551)
by Miss Islington (bot)
· 5 years ago
6ca0307
[3.8] bpo-37757: Disallow PEP 572 cases that expose implementation details (GH-15491)
by Nick Coghlan
· 5 years ago
ed146b5
[3.8] bpo-37830: Fix compilation of break and continue in finally. (GH-15320) (GH-15456)
by Serhiy Storchaka
· 5 years ago
f93c15a
bpo-36311: Fixes decoding multibyte characters around chunk boundaries and improves decoding performance (GH-15083)
by Miss Islington (bot)
· 5 years ago
30e5aff
bpo-37732: Fix GCC warning in _PyObject_Malloc() (GH-15333) (GH-15342)
by Victor Stinner
· 5 years ago
364a1d3
bpo-37681: no_sanitize_thread support from GCC 5.1 (GH-15096)
by Miss Islington (bot)
· 5 years ago
bf8e82f
[3.8] bpo-36974: separate vectorcall functions for each calling convention (GH-13781) (#14782)
by Jeroen Demeyer
· 5 years ago
1099e34
bpo-37233: optimize method_vectorcall in case of totalargs == 0 (GH-14550)
by Miss Islington (bot)
· 5 years ago
c7570d4
[3.8] bpo-37233: use _PY_FASTCALL_SMALL_STACK in method_vectorcall (GH-13974)
by Inada Naoki
· 5 years ago
d4c6647
Stop using Argument Clinic for dict_pop (GH-13935)
by Inada Naoki
· 5 years ago
cb083f7
bpo-37221: Add PyCode_NewWithPosOnlyArgs to be used internally and set PyCode_New as a compatibility wrapper (GH-13959) (#14505)
by Miss Islington (bot)
· 5 years ago
5c4ce3e
bpo-37417: Fix error handling in bytearray.extend. (GH-14407)
by Miss Islington (bot)
· 6 years ago
d32594a
bpo-24214: Fixed the UTF-8 and UTF-16 incremental decoders. (GH-14304)
by Miss Islington (bot)
· 6 years ago
26fe6c3
bpo-36974: inherit tp_vectorcall_offset unconditionally (GH-13858) (GH-14342)
by Miss Islington (bot)
· 6 years ago
988fff5
bpo-36922: use Py_TPFLAGS_METHOD_DESCRIPTOR in lookup_maybe_method() (GH-13865)
by Miss Islington (bot)
· 6 years ago
f72886a
bpo-37236: pragma optimize off for _Py_c_quot on Windows arm64 (GH-13983)
by Miss Islington (bot)
· 6 years ago
996e526
bpo-26219: Fix compiler warning in _PyCode_InitOpcache() (GH-13997) (GH-14000)
by Miss Islington (bot)
· 6 years ago
583ff84
bpo-37219: Remove erroneous optimization for differencing an empty set (GH-13965) (GH-13967)
by Miss Islington (bot)
· 6 years ago
6e05307
bpo-37138: fix undefined behaviour with memcpy() on NULL array (GH-13867)
by Miss Islington (bot)
· 6 years ago
dd492d9
[3.8] bpo-37170: Fix the cast on error in PyLong_AsUnsignedLongLongMask() (GH-13860) (GH-13891)
by Zackery Spytz
· 6 years ago
ea9f168
bpo-26219: Fix compiler warning in _PyCode_InitOpcache() (GH-13809)
by Victor Stinner
· 6 years ago
91234a1
bpo-26219: per opcode cache for LOAD_GLOBAL (GH-12884)
by Inada Naoki
· 6 years ago
1e375c6
bpo-36027: Really fix "incompatible pointer type" compiler warning (GH-13761)
by Petr Viktorin
· 6 years ago
be718c3
bpo-36974: add some assertions for PEP 590 (GH-13682)
by Jeroen Demeyer
· 6 years ago
7f4ae1b
bpo-37012: Clean up special cases in PyType_FromSpecWithBases slot assignments (GH-13496)
by Petr Viktorin
· 6 years ago
e584cbf
bpo-36027 bpo-36974: Fix "incompatible pointer type" compiler warnings (GH-13758)
by Petr Viktorin
· 6 years ago
fb9423f
bpo-36974: Make tp_call=PyVectorcall_Call work for inherited types (GH-13699)
by Petr Viktorin
· 6 years ago
3caf4de
Call PyObject_GC_UnTrack in structseq dealloc (GH-13751)
by Pablo Galindo
· 6 years ago
7ffcf84
bpo-37126: Allow structseq objects to be tracked by the GC (GH-13729)
by Pablo Galindo
· 6 years ago
c529967
bpo-36027: Extend three-argument pow to negative second argument (GH-13266)
by Mark Dickinson
· 6 years ago
bdbad71
bpo-20092. Use __index__ in constructors of int, float and complex. (GH-13108)
by Serhiy Storchaka
· 6 years ago
3b57f50
bpo-36842: Pass positional only parameters to code_new audit hook (GH-13707)
by Pablo Galindo
· 6 years ago
9843bc1
Improve exception message for str.format (GH-12675)
by Francisco Couzo
· 6 years ago
cd74e66
bpo-37122: Make co->co_argcount represent the total number of positonal arguments in the code object (GH-13726)
by Pablo Galindo
· 6 years ago
5c22476
Improve docstring of list.sort (GH-8516)
by Tim Hoffmann
· 6 years ago
1c263e3
bpo-37029: keep usable_arenas in sorted order without searching (#13612)
by Tim Peters
· 6 years ago
3a46d5c
bpo-37108: Support super with methods that use positional-only arguments (GH-13695)
by Pablo Galindo
· 6 years ago
c7f803b
bpo-36379: __ipow__ must be a ternaryfunc, not a binaryfunc (GH-13546)
by Zackery Spytz
· 6 years ago
530f506
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464)
by Jeroen Demeyer
· 6 years ago
37788bc
bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653)
by Jeroen Demeyer
· 6 years ago
c145f3b
bpo-36974: remove _PyObject_HasFastCall (GH-13460)
by Jeroen Demeyer
· 6 years ago
735e8af
bpo-36974: inherit the vectorcall protocol (GH-13498)
by Jeroen Demeyer
· 6 years ago
ada319b
bpo-32388: Remove cross-version binary compatibility requirement in tp_flags (GH-4944)
by Antoine Pitrou
· 6 years ago
0c2f930
bpo-22385: Support output separators in hex methods. (#13578)
by Gregory P. Smith
· 6 years ago
aacc77f
bpo-36974: implement PEP 590 (GH-13185)
by Jeroen Demeyer
· 6 years ago
7d40869
remove unnecessary tp_dealloc (GH-13647)
by Inada Naoki
· 6 years ago
05f1641
bpo-26423: Fix possible overflow in wrap_lenfunc() (GH-13606)
by Zackery Spytz
· 6 years ago
eb65e24
bpo-36922: implement PEP-590 Py_TPFLAGS_METHOD_DESCRIPTOR (GH-13338)
by Jeroen Demeyer
· 6 years ago
331a6a5
bpo-36763: Implement the PEP 587 (GH-13592)
by Victor Stinner
· 6 years ago
91f4380
bpo-36785: PEP 574 implementation (GH-7076)
by Antoine Pitrou
· 6 years ago
180dc1b
bpo-28866: No type cache for types with specialized mro, invalidation is hard. (#13157)
by Julien Palard
· 6 years ago
47dd2f9
bpo-37017: PyObject_CallMethodObjArgs uses LOAD_METHOD optimization (GH-13516)
by Michael J. Sullivan
· 6 years ago
a9f05d6
bpo-37032: Add CodeType.replace() method (GH-13542)
by Victor Stinner
· 6 years ago
c95c93d
bpo-20285: Improve help docs for object (GH-4759)
by Cheryl Sabella
· 6 years ago
b82e17e
bpo-36842: Implement PEP 578 (GH-12613)
by Steve Dower
· 6 years ago
6bc5917
bpo-35091: Objects/listobject.c: Replace overflow checks in gallop fu… (GH-10202)
by Alexey Izbyshev
· 6 years ago
77aa396
bpo-36907: fix refcount bug in _PyStack_UnpackDict() (GH-13381)
by Jeroen Demeyer
· 6 years ago
53d378c
closes bpo-36951: Correct some types in the type_members struct in typeobject.c. (GH-13403)
by Zackery Spytz
· 6 years ago
a5119e7
bpo-36957: Add _PyLong_Rshift() and _PyLong_Lshift(). (GH-13416)
by Serhiy Storchaka
· 6 years ago
27ee0f8
Fix couple of dead code paths (GH-7418)
by David Carlier
· 6 years ago
871ff77
bpo-36763: Add _PyInitError functions (GH-13395)
by Victor Stinner
· 6 years ago
b16b4e4
bpo-36763: Add PyMemAllocatorName (GH-13387)
by Victor Stinner
· 6 years ago
a8b4694
Fix typo in _PyMethodDef_RawFastCallKeywords error message (GH-13343)
by Jeroen Demeyer
· 6 years ago
14514d9
bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375)
by Zackery Spytz
· 6 years ago
c96be81
bpo-36900: Replace global conf vars with config (GH-13299)
by Victor Stinner
· 6 years ago
f0be4bb
bpo-27987: pymalloc: align by 16bytes on 64bit platform (GH-12850)
by Inada Naoki
· 6 years ago
351c674
bpo-35983: skip trashcan for subclasses (GH-11841)
by Jeroen Demeyer
· 6 years ago
a2fedd8
bpo-36869: fix warning of unused variables (GH-13182)
by Emmanuel Arias
· 6 years ago
0613c1e
Fix a possible crash due to PyType_FromSpecWithBases() (GH-10304)
by Zackery Spytz
· 6 years ago
3aca40d
closes bpo-36861: Update Unicode database to 12.1.0. (GH-13214)
by Benjamin Peterson
· 6 years ago
96aeaec
bpo-36793: Remove unneeded __str__ definitions. (GH-13081)
by Serhiy Storchaka
· 6 years ago
9646630
bpo-36766: Typos in docs and code comments (GH-13116)
by penguindustin
· 6 years ago
1a2252e
bpo-36594: Fix incorrect use of %p in format strings (GH-12769)
by Zackery Spytz
· 6 years ago
8b1271b
Only count number of members once (#12691)
by Eddie Elizondo
· 6 years ago
22c5263
bpo:34848 : Correct an incorrect docstring for range().index method (GH-9877)
by Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)
· 6 years ago
709d23d
bpo-36775: _PyCoreConfig only uses wchar_t* (GH-13062)
by Victor Stinner
· 6 years ago
43fc3bb
bpo-36775: Add _PyUnicode_InitEncodings() (GH-13057)
by Victor Stinner
· 6 years ago
e251095
bpo-36775: Add _Py_FORCE_UTF8_FS_ENCODING macro (GH-13056)
by Victor Stinner
· 6 years ago
8c77b8c
bpo-36540: PEP 570 -- Implementation (GH-12701)
by Pablo Galindo
· 6 years ago
e0dcb85
bpo-36745: Fix a possible reference leak in PyObject_SetAttr() (GH-12993)
by Zackery Spytz
· 6 years ago
7abb6c0
bpo-36669: add matmul support to weakref.proxy (GH-12932)
by Mark Dickinson
· 6 years ago
6fec905
bpo-36642: make unicodedata const (GH-12855)
by Inada Naoki
· 6 years ago
e8f9acf
bpo-36611: Disable serialno field of debug memory allocators (#12796)
by Victor Stinner
· 6 years ago
0fc91ee
bpo-36389: Add _PyObject_CheckConsistency() function (GH-12803)
by Victor Stinner
· 6 years ago
b015fc8
bpo-36549: str.capitalize now titlecases the first character instead of uppercasing it (GH-12804)
by Kingsley M
· 6 years ago
9e4f2f3
bpo-20180: Use argument clinic for dict.pop() and dict.popitem() (GH-12792)
by Inada Naoki
· 6 years ago
4c409be
bpo-36389: Change PyMem_SetupDebugHooks() constants (GH-12782)
by Victor Stinner
· 6 years ago
2b00db6
bpo-36389: _PyObject_IsFreed() now also detects uninitialized memory (GH-12770)
by Victor Stinner
· 6 years ago
f66e336
bpo-29202: improve dict iteration (GH-11900)
by Cheryl Sabella
· 6 years ago
b8311cf
bpo-36473: add maximum iteration check for dict .values() and .items() (GH-12619)
by Thomas Perl
· 6 years ago
e6a0e80
fix confusing argument name in unicodeobject.c (GH-12653)
by Max Bernstein
· 6 years ago
62f9588
bpo-36026: make descr error message consistent (GH-11930)
by Inada Naoki
· 6 years ago
7a465cb
bpo-24214: Fixed the UTF-8 incremental decoder. (GH-12603)
by Serhiy Storchaka
· 6 years ago
796cc6e
bpo-36452: dictiter: track maximum iteration count (GH-12596)
by Thomas Perl
· 6 years ago
364f0b0
bpo-35810: Incref heap-allocated types in PyObject_Init (GH-11661)
by Eddie Elizondo
· 6 years ago
871309c
bpo-36433: fix confusing error messages in classmethoddescr_call (GH-12556)
by Inada Naoki
· 6 years ago
dd5417a
bpo-36218: Fix handling of heterogeneous values in list.sort (GH-12209)
by Rémi Lapeyre
· 6 years ago
Next »