summaryrefslogtreecommitdiff
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
...
* 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-061-2/+2
* make sure to not call memcpy with a NULL second argumentBenjamin Peterson2016-09-061-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-061-3/+9
* Issue #23908: os functions, open() and the io.FileIO constructor now rejectSerhiy Storchaka2016-07-011-1/+2
* Issue #22463: Backport compiler warning fixes and workaroundsMartin Panter2016-06-218-12/+12
* Issue #27225: Fixed a reference leak in type_new when setting __new__ fails.Serhiy Storchaka2016-06-051-1/+5
* Issue #20041: Fixed TypeError when frame.f_trace is set to None.Serhiy Storchaka2016-06-041-5/+3
* Issue #27171: Fix typos in documentation, code comments, and testsMartin Panter2016-06-021-1/+1
* Issue #27125: Remove duplicated words from documentation and commentsMartin Panter2016-05-302-2/+2
* Issue #27125: Fix various errors like “will [be] inherited”Martin Panter2016-05-291-1/+1
* Backed out changeset e7062dd9085e (#25731)Benjamin Peterson2016-05-281-1/+1
* Issue #27076: Doc, comment and test function name spelling fixesMartin Panter2016-05-261-1/+1
* Issue #27039: Fixed bytearray.remove() for values greater than 127.Serhiy Storchaka2016-05-161-7/+5
* fix indentation of comments in cellobject.c (closes #27011)Benjamin Peterson2016-05-121-3/+3
* Corrections for a/an in code comments and documentationMartin Panter2016-05-082-3/+3
* Issue #17765: weakref.ref() no longer silently ignores keyword arguments.Serhiy Storchaka2016-05-071-1/+3
* Issue #26778: Fixed "a/an/and" typos in code comment and documentation.Serhiy Storchaka2016-04-172-2/+2
* add gc support to slice (closes #26659)Benjamin Peterson2016-04-161-4/+15
* Correct “an” → “a” with “Unicode”, “user”, “UTF”, etcMartin Panter2016-04-151-1/+1
* Issue #26718: super.__init__ no longer leaks memory if called multiple times.Serhiy Storchaka2016-04-131-3/+3
* Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka2016-04-105-8/+8
* Issue #13410: Fixed a bug in PyUnicode_Format where it failed to properlySerhiy Storchaka2016-04-101-1/+4
* Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-068-28/+28
* Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-306-14/+20
* properly use PyObject_CallMethod in dictview binary operations (closes #26478)Benjamin Peterson2016-03-031-5/+5
* Issue #25698: Importing module if the stack is too deep no longer replacesSerhiy Storchaka2016-02-101-0/+30
* fix hash member name (closes #22847)Benjamin Peterson2016-02-061-1/+1
* fix debug assertionBenjamin Peterson2016-02-041-1/+1
* Issue #22847: Improve method cache efficiency.Antoine Pitrou2014-11-151-5/+38