summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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-121-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-021-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-111-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-141-1/+1
* bpo-35214: Add _Py_ prefix to MEMORY_SANITIZER def. (GH-10503)Miss Islington (bot)2018-11-131-1/+1
* Disable getc_unlocked() with MemorySanitizer. (GH-10499)Miss Islington (bot)2018-11-131-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
* bpo-34574: Prevent OrderedDict iterators from exhaustion during pickling. (GH...Miss Islington (bot)2018-10-201-28/+9
* bpo-1621: Avoid signed integer overflow in set_table_resize() (GH-9059) (GH-9...Miss Islington (bot)2018-10-191-8/+3
* bpo-34974: Do not replace unexpected errors in bytes() and bytearray(). (GH-9...Miss Islington (bot)2018-10-142-3/+5
* bpo-34910: Ensure that PyObject_Print() always returns -1 on error. (GH-9733)Miss Islington (bot)2018-10-061-2/+3
* bpo-34899: Fix a possible assertion failure due to int_from_bytes_impl() (GH-...Miss Islington (bot)2018-10-051-1/+1
* bpo-34879: Fix a possible null pointer dereference in bytesobject.c (GH-9683)Miss Islington (bot)2018-10-031-1/+1
* bpo-34320: Fix dict(o) didn't copy order of dict subclass (GH-8624)Miss Islington (bot)2018-09-261-1/+3
* [3.7] Fix misleading mentions of tp_size in comments. (GH-9136)Benjamin Peterson2018-09-102-3/+3
* bpo-25750: fix refcounts in type_getattro() (GH-6118)Miss Islington (bot)2018-09-071-6/+11
* closes bpo-34504: Remove the useless NULL check in PySequence_Check(). (GH-8935)Miss Islington (bot)2018-08-261-1/+1
* closes bpo-34501: PyType_FromSpecWithBases: Check spec->name before dereferen...Miss Islington (bot)2018-08-251-4/+9
* closes bpo-34493: Objects/genobject.c: Add missing NULL check to compute_cr_o...Miss Islington (bot)2018-08-251-0/+3
* closes bpo-34468: Objects/rangeobject.c: Fix an always-false condition in ran...Miss Islington (bot)2018-08-241-4/+4
* closes bpo-34477: Objects/typeobject.c: Add missing NULL check to type_init()...Miss Islington (bot)2018-08-241-0/+3
* bpo-34436: Fix check that disables overallocation for the last fmt specifier ...Miss Islington (bot)2018-08-231-3/+3
* bpo-34435: Add missing NULL check to unicode_encode_ucs1(). (GH-8823)Miss Islington (bot)2018-08-191-2/+3
* bpo-24618: Add a check in the code constructor. (GH-8283)Miss Islington (bot)2018-07-161-3/+15
* bpo-34087: Fix buffer overflow in int(s) and similar functions (GH-8274)Miss Islington (bot)2018-07-141-0/+2
* bpo-34042: Fix dict.copy() to maintain correct total refcount (GH-8119)Miss Islington (bot)2018-07-061-0/+7
* fix two typos in Objects/odictobject.c comments (GH-8040)Miss Islington (bot)2018-07-061-2/+2
* update to Unicode 11.0.0 (closes bpo-33778) (GH-7439) (GH-7470)Miss Islington (bot)2018-06-071-724/+946