summaryrefslogtreecommitdiff
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-24214: Fixed the UTF-8 and UTF-16 incremental decoders. (GH-14304) ...Miss Islington (bot)2019-07-012-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
* bpo-35372: Fix the code page decoder for input > 2 GiB. (GH-10848)Miss Islington (bot)2018-12-031-5/+4
* bpo-33012: Fix more invalid function cast warnings with gcc 8. (GH-10751)Miss Islington (bot)2018-11-292-3/+3
* bpo-34523, bpo-35322: Fix unicode_encode_locale() (GH-10759) (GH-10761)Victor Stinner2018-11-281-7/+5
* bpo-33012: Fix signatures of METH_NOARGS functions. (GH-10736) (GH-10748)Serhiy Storchaka2018-11-271-1/+1
* bpo-33029: Fix signatures of getter and setter functions. (GH-10746)Miss Islington (bot)2018-11-277-51/+56
* bpo-33954: Rewrite FILL() macro of unicodeobject.c (GH-10738)Victor Stinner2018-11-271-9/+17
* bpo-33954: Fix _PyUnicode_InsertThousandsGrouping() (GH-10623) (GH-10718)Victor Stinner2018-11-262-225/+187
* [3.7] bpo-9263: _PyObject_Dump() detects freed memory (GH-10061) (GH-10662)Victor Stinner2018-11-222-23/+76
* bpo-35269: Fix a possible segfault involving a newly-created coroutine (GH-10...Miss Islington (bot)2018-11-181-1/+1
* [3.7] bpo-35214: Fix OOB memory access in unicode escape parser (GH-10506) (G...Miss Islington (bot)2018-11-131-1/+1
* bpo-35214: Add _Py_ prefix to MEMORY_SANITIZER def. (GH-10503)Miss Islington (bot)2018-11-121-1/+1
* Disable getc_unlocked() with MemorySanitizer. (GH-10499)Miss Islington (bot)2018-11-121-1/+2
* closes bpo-35204: Disable thread and memory sanitizers for address_in_range()...Miss Islington (bot)2018-11-111-12/+31
* Fix a possible crash in range.__reversed__(). (GH-10252)Miss Islington (bot)2018-10-311-0/+1
* bpo-34973: Fix crash in bytes constructor. (GH-9841)Miss Islington (bot)2018-10-211-35/+69
* bpo-33712: OrderedDict only creates od_fast_nodes cache if needed (GH-7349). ...Serhiy Storchaka2018-10-201-51/+19