summaryrefslogtreecommitdiff
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* bpo-35444: Fix error handling when fail to look up builtin "getattr". (GH-110...Miss Islington (bot)2018-12-113-23/+8
* [3.6] bpo-35454: Fix miscellaneous minor issues in error handling. (GH-11077)...Serhiy Storchaka2018-12-111-9/+9
* bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...Serhiy Storchaka2018-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) (GH...Victor Stinner2018-11-291-2/+2
* bpo-33012: Fix signatures of METH_NOARGS functions. (GH-10736) (GH-10748)Miss Islington (bot)2018-11-271-1/+1
* [3.6] bpo-33029: Fix signatures of getter and setter functions. (GH-10746) (G...Serhiy Storchaka2018-11-276-50/+55
* bpo-33954: Rewrite FILL() macro of unicodeobject.c (GH-10740)Victor Stinner2018-11-271-9/+17
* bpo-33954: Fix _PyUnicode_InsertThousandsGrouping() (GH-10623) (GH-10718) (GH...Victor Stinner2018-11-262-226/+187
* bpo-9263: _PyObject_Dump() detects freed memory (GH-10061) (GH-10662) (GH-10663)Victor Stinner2018-11-222-27/+75
* bpo-35214: Fix OOB memory access in unicode escape parser (GH-10506)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
* bpo-34574: Prevent OrderedDict iterators from exhaustion during pickling. (GH...Miss Islington (bot)2018-10-191-28/+9
* bpo-1621: Avoid signed integer overflow in set_table_resize(). (GH-9059) (GH-...Miss Islington (bot)2018-10-201-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-021-1/+1
* [3.6] bpo-34320: Fix dict(o) didn't copy order of dict subclass (GH-8624) (GH...Miss Islington (bot)2018-09-251-1/+3
* Fix Tools/gdb/libpython.pyMiss Islington (bot)2018-09-112-24/+14
* [3.6] Fix misleading mentions of tp_size in comments (GH-9137)Benjamin Peterson2018-09-102-3/+3
* bpo-25750: fix refcounts in type_getattro() (GH-6118) (GH-9088)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-251-1/+1
* closes bpo-34501: PyType_FromSpecWithBases: Check spec->name before dereferen...Miss Islington (bot)2018-08-251-4/+9
* 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) (GH-8311)Serhiy Storchaka2018-07-171-5/+24
* fix two typos in Objects/odictobject.c comments (GH-8040)Miss Islington (bot)2018-07-061-2/+2
* bpo-33786: Fix asynchronous generators to handle GeneratorExit in athrow() (G...Yury Selivanov2018-06-071-8/+7
* Fix typo in __mul__ and __rmul__ docstring (GH-6674)Miss Islington (bot)2018-05-081-2/+2
* bpo-33391: Fix refleak in set_symmetric_difference (GH-6670)Miss Islington (bot)2018-05-021-1/+3
* bpo-33199: Initialize ma_version_tag in PyDict_Copy (GH-6341)Miss Islington (bot)2018-04-021-0/+1
* Fix typo and edit for clarity in the docstrings of sys.float_info. (GH-2251)Miss Islington (bot)2018-03-261-3/+2
* bpo-32374: m_traverse may be called with m_state=NULL (GH-5140)Miss Islington (bot)2018-03-161-0/+21
* [3.7] bpo-17288: Prevent jumps from 'return' and 'exception' trace events. (G...Miss Islington (bot)2018-03-131-4/+36
* [3.6] bpo-33026: Fix jumping out of "with" block by setting f_lineno. (GH-602...Miss Islington (bot)2018-03-111-0/+7
* bpo-18533: Avoid RecursionError from repr() of recursive dictview (GH-4823)Miss Islington (bot)2018-02-261-4/+12
* bpo-31787: Prevent refleaks when calling __init__() more than once (GH-3995)INADA Naoki2018-02-132-6/+6
* bpo-32827: Fix usage of _PyUnicodeWriter_Prepare() in decoding errors handler...Miss Islington (bot)2018-02-131-7/+3
* [3.6] bpo-32746: Fix multiple typos (GH-5144) (GH-5522)Terry Jan Reedy2018-02-032-2/+2
* bpo-32137: The repr of deeply nested dict now raises a RecursionError (GH-457...Miss Islington (bot)2018-02-013-6/+5
* [3.6] bpo-32583: Fix possible crashing in builtin Unicode decoders (GH-5325) ...Xiang Zhang2018-01-311-2/+20
* [3.6] Revert "bpo-32690: Preserve order of locals() (GH-5379) (#5390)"Nick Coghlan2018-01-301-2/+2