summaryrefslogtreecommitdiff
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-38588: Fix possible crashes in dict and list when calling P… (GH-...Dong-hee Na2019-12-312-0/+12
* [3.7] bpo-38610: Fix possible crashes in several list methods (GH-17022) (GH-...Pablo Galindo2019-12-301-3/+12
* closes bpo-30364: Replace deprecated no_address_safety_analysis attribute. (G...Miss Islington (bot)2019-12-261-7/+7
* bpo-35409: Ignore GeneratorExit in async_gen_athrow_throw (GH-14755)Miss Islington (bot)2019-11-191-0/+11
* [3.7] bpo-38395: Fix ownership in weakref.proxy methods (GH-16632) (GH-16663)Pablo Galindo2019-10-111-31/+91
* [3.7] bpo-38409: Fix grammar in str.strip() docstring (GH-16682) (GH-16686)Zachary Ware2019-10-092-4/+4
* bpo-38383: Fix possible integer overflow in startswith() of bytes and bytearr...Miss Islington (bot)2019-10-061-1/+1
* bpo-38013: make async_generator_athrow object tolerant to throwing exceptions...Miss Islington (bot)2019-09-171-5/+0
* bpo-38096: Complete the "structseq" and "named tuple" cleanup (GH-16010) (GH...Miss Islington (bot)2019-09-121-2/+8
* bpo-38096: Clean up the "struct sequence" / "named tuple" docs (GH-15895) (GH...Paul Ganssle2019-09-112-2/+2
* Fix typo in dict object comment (GH-15814)Miss Islington (bot)2019-09-101-1/+1
* bpo-36946:Fix possible signed integer overflow when handling slices. (GH-15639)Miss Islington (bot)2019-09-081-2/+4
* bpo-36311: Fixes decoding multibyte characters around chunk boundaries and im...Miss Islington (bot)2019-08-211-6/+10
* bpo-37732: Fix GCC warning in _PyObject_Malloc() (GH-15333) (GH-15342) (GH-15...Victor Stinner2019-08-201-15/+13
* bpo-37681: no_sanitize_thread support from GCC 5.1 (GH-15096)Miss Islington (bot)2019-08-141-2/+2
* bpo-37417: Fix error handling in bytearray.extend. (GH-14407)Miss Islington (bot)2019-06-261-0/+4
* [3.7] bpo-24214: Fixed the UTF-8 and UTF-16 incremental decoders. (GH-14304) ...Miss Islington (bot)2019-06-252-6/+10
* [3.7] bpo-37219: Remove erroneous optimization for differencing an empty set ...Raymond Hettinger2019-06-111-8/+0
* [3.7] bpo-37170: Fix the cast on error in PyLong_AsUnsignedLongLongMask() (GH...Zackery Spytz2019-06-071-2/+2
* [3.7] Fix a possible crash due to PyType_FromSpecWithBases() (GH-10304) (GH-1...Petr Viktorin2019-05-281-0/+1
* bpo-26423: Fix possible overflow in wrap_lenfunc() (GH-13606)Miss Islington (bot)2019-05-281-1/+1
* [3.7] bpo-28866: No type cache for types with specialized mro, invalidation i...Miss Islington (bot)2019-05-261-8/+30
* bpo-27987: pymalloc: align by 16bytes on 64bit platform (GH-12850)Miss Islington (bot)2019-05-251-0/+6
* bpo-35091: Objects/listobject.c: Replace overflow checks in gallop fu… (GH-...Miss Islington (bot)2019-05-221-8/+4
* bpo-36907: fix refcount bug in _PyStack_UnpackDict() (GH-13381) (GH-13493)Jeroen Demeyer2019-05-221-5/+12
* closes bpo-36951: Correct some types in the type_members struct in typeobject...Miss Islington (bot)2019-05-191-3/+3
* [3.7] Fix typo in _PyMethodDef_RawFastCallKeywords error message (GH-13343) (...Stéphane Wirtel2019-05-171-1/+1
* bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375)Miss Islington (bot)2019-05-174-4/+8
* bpo:34848 : Correct an incorrect docstring for range().index method (GH-9877)Miss Islington (bot)2019-05-031-1/+1
* bpo-36745: Fix a possible reference leak in PyObject_SetAttr() (GH-12993)Miss Islington (bot)2019-04-281-1/+3
* [3.7] bpo-36389: _PyObject_IsFreed() now also detects uninitialized memory (G...Victor Stinner2019-04-112-33/+18
* bpo-24214: Fixed the UTF-8 incremental decoder. (GH-12603) (GH-12627)Miss Islington (bot)2019-03-301-0/+3
* bpo-36433: fix confusing error messages in classmethoddescr_call (GH-12556)Miss Islington (bot)2019-03-261-6/+4
* bpo-36218: Fix handling of heterogeneous values in list.sort (GH-12209) GH-12...Miss Islington (bot)2019-03-251-11/+22
* bpo-36312: Fix decoders for some code pages. (GH-12369)Miss Islington (bot)2019-03-201-5/+16
* bpo-36365: Fix compiler warning in structseq.c (GH-12451)Victor Stinner2019-03-201-4/+10
* [3.7] bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264). (...Serhiy Storchaka2019-03-143-4/+4
* bpo-36251: Fix format strings used in match_repr() and stdprinter_repr(). (GH...Miss Islington (bot)2019-03-101-1/+1
* bpo-33989: Ensure that ms.key_compare is always initialized in list_sort_impl...Miss Islington (bot)2019-02-211-0/+3
* bpo-31506: Clarify error messages for object.__new__ and object.__init__ (GH-...Miss Islington (bot)2019-02-191-3/+6
* bpo-35992: Use PySequence_GetItem only if sq_item is not NULL (GH-11857)Miss Islington (bot)2019-02-171-2/+5
* bpo-35961: Fix a crash in slice_richcompare() (GH-11830)Miss Islington (bot)2019-02-131-24/+14
* bpo-35552: Fix reading past the end in PyUnicode_FromFormat() and PyBytes_Fro...Miss Islington (bot)2019-01-122-6/+18
* bpo-33817: Fix _PyBytes_Resize() for empty bytes object. (GH-11516)Miss Islington (bot)2019-01-111-0/+13
* bpo-35560: Remove assertion from format(float, "n") (GH-11288)Miss Islington (bot)2019-01-071-1/+1
* closes bpo-35623: Fix integer overflow when sorting large lists (GH-11380)Miss Islington (bot)2019-01-011-1/+0
* bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11...Miss Islington (bot)2018-12-171-0/+4
* bpo-35444: Fix error handling when fail to look up builtin "getattr". (GH-110...Serhiy Storchaka2018-12-113-23/+8
* bpo-35454: Fix miscellaneous minor issues in error handling. (GH-11077)Miss Islington (bot)2018-12-101-9/+9
* bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...Zackery Spytz2018-12-071-1/+1