summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* bpo-31530: stop crashes when iterating over a file on multiple threadsbenjamin-iteration-tortureBenjamin Peterson2017-09-201-38/+67
* consistently use Py_TYPE, Py_REFCNT, and correct initializer macros (#3563)Benjamin Peterson2017-09-1410-100/+87
* bpo-31095: Fix potential crash during GC (GH-3197)INADA Naoki2017-09-042-0/+8
* bpo-29902: Emit a Py3k deprecation warning when pickling or copying (#2823)Serhiy Storchaka2017-08-021-0/+23
* [2.7] bpo-30657: Check & prevent integer overflow in PyString_DecodeEscape (#...Jay Bosamiya2017-06-181-1/+7
* [2.7] bpo-27945: Fixed various segfaults with dict. (GH-1657) (#1681)Serhiy Storchaka2017-05-201-14/+31
* [2.7] bpo-25794: Fix `type.__setattr__()` for non-interned or unicode attribu...Serhiy Storchaka2017-05-201-5/+38
* bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1531) (#1480)Xiang Zhang2017-05-101-3/+5
* bpo-30255: Clip step in _PySlice_Unpack() (#1429)Victor Stinner2017-05-031-0/+7
* bpo-30074: Fix compile warnings of _PySlice_Unpack and convert missed (#1154)Serhiy Storchaka2017-04-158-13/+13
* bpo-27867: Expand the PySlice_GetIndicesEx macro. (#1023) (#1046)Serhiy Storchaka2017-04-088-27/+31
* bpo-29935: Fixed error messages in the index() method of tuple and list (#887...Serhiy Storchaka2017-03-302-4/+4
* bpo-29602: fix signed zero handling in complex constructor (#204)Mark Dickinson2017-02-201-3/+3
* bpo-29347: Fix possibly dereferencing undefined pointers when creating weakre...Xiang Zhang2017-02-201-0/+2
* Issue #29028: Fixed possible use-after-free bugs in the subscription of theSerhiy Storchaka2017-02-011-29/+48
* Issue #27867: Replaced function PySlice_GetIndicesEx() with a macro.Serhiy Storchaka2017-01-251-23/+55
* Issue #29145: Fix overflow checks in string, bytearray and unicode.Xiang Zhang2017-01-093-74/+51
* Issue #28427: old keys should not remove new values fromAntoine Pitrou2016-12-271-10/+55
* Issue #28998: More APIs now support longs as well as ints.Serhiy Storchaka2016-12-271-2/+5
* Issue #29019: Fix dict.fromkeys(x) overallocates when x is sparce dict.INADA Naoki2016-12-201-1/+1
* revert a37cc3d926ec (#5322)Benjamin Peterson2016-12-141-27/+1
* Backed out changeset ea904d4b3634Benjamin Peterson2016-12-141-1/+1
* fix refleak in reduce_2 error caseBenjamin Peterson2016-12-031-1/+1
* fix refleak in the shift-by-zero case (#27870)Benjamin Peterson2016-12-031-5/+6
* declarations to the top of the blockBenjamin Peterson2016-12-021-1/+1
* Issue #5322: Fixed setting __new__ to a PyCFunction inside Python code.Serhiy Storchaka2016-12-021-1/+27
* Issue #11145: Fixed miscellaneous issues with C-style formatting of typesSerhiy Storchaka2016-12-011-69/+85
* Issue #24469: Fixed memory leak caused by int subclasses without overriddenSerhiy Storchaka2016-11-291-8/+0
* Issue #27942: Fix memory leak in codeobject.cYury Selivanov2016-11-091-0/+2
* Issue #26906: Resolving special methods of uninitialized type now causesSerhiy Storchaka2016-10-081-5/+19
* Silenced compiler warnings.Serhiy Storchaka2016-10-081-1/+0
* Issue #18287: PyType_Ready() now checks that tp_name is not NULL.Serhiy Storchaka2016-10-071-0/+6
* Issue #28350: String constants with null character no longer interned.Serhiy Storchaka2016-10-041-5/+8
* Issue #27942: String constants now interned recursively in tuples and frozens...Serhiy Storchaka2016-09-301-9/+45
* Issue #28139: Fix messed up indentationMartin Panter2016-09-175-39/+43
* Correct occurance → occurrence; extracted from patch by Georg BrandlMartin Panter2016-09-082-3/+3
* Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Martin Panter2016-09-074-4/+4
* promote some shifts to unsigned, so as not to invoke undefined behaviorBenjamin Peterson2016-09-071-2/+2
* make sure to not call memcpy with a NULL second argumentBenjamin Peterson2016-09-071-6/+9
* Issue #27870: A left shift of zero by a large integer no longer attempts to a...Mark Dickinson2016-08-291-0/+5
* Issue #25604: Fix bug in integer true division that could have resulted in of...Mark Dickinson2016-08-211-2/+2
* Fix a refleak in call_maybe()Victor Stinner2016-08-191-1/+3
* Fix a refleak in call_method()Victor Stinner2016-08-191-1/+3
* Spelling and grammar fixes in code comments and documentationMartin Panter2016-07-282-2/+2
* Issue #27626: Spelling fixes in docs, comments and internal namesMartin Panter2016-07-282-5/+5
* Issue #27581: Don’t rely on overflow wrapping in PySequence_Tuple()Martin Panter2016-07-251-4/+5
* Issue #27507: Check for integer overflow in bytearray.extend()Martin Panter2016-07-181-1/+11
* Issue #27473: Fixed possible integer overflow in str, unicode and bytearraySerhiy Storchaka2016-07-123-21/+26
* Issue #25523: Correct "a" article to "an" articleMartin Panter2015-11-021-1/+1
* fix refleaks in PyDict_SetItem error cases (closes #27248)Benjamin Peterson2016-07-071-3/+9