summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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-131-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-041-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-071-1/+1
* fix debug assertionBenjamin Peterson2016-02-051-1/+1
* Issue #22847: Improve method cache efficiency.Antoine Pitrou2014-11-141-5/+38
* code_richcompare() now uses the constants typesVictor Stinner2016-01-221-1/+143
* set tp_new from the class in the hierarchy that actually owns the descriptor ...Benjamin Peterson2016-01-191-1/+1
* Comment out two tests that won't pass now after reverting the typeobject.cBarry Warsaw2016-01-111-24/+0
* Issue #22995: [UPDATE] Comment out the one of the pickleability tests inBarry Warsaw2016-01-111-0/+9
* remove some copyright notices supserseded by the toplevel onesBenjamin Peterson2016-01-011-3/+0
* Issue #25961: Fixed compilation error and a leak in type constructor.Serhiy Storchaka2015-12-311-4/+11
* Issue #25961: Disallowed null characters in the type name.Serhiy Storchaka2015-12-301-4/+11
* Issue #22995: Instances of extension types with a state that aren'tSerhiy Storchaka2015-12-301-7/+32
* Issue #20440: More use of Py_SETREF.Serhiy Storchaka2015-12-271-6/+8
* Issue #20440: Applied yet one patch for using Py_SETREF.Serhiy Storchaka2015-12-271-35/+22
* Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-248-29/+15
* Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka2015-12-194-4/+4
* Issue #19543: Added Py3k warning for decoding unicode.Serhiy Storchaka2015-12-031-0/+3
* Issue #24097: Fixed crash in object.__reduce__() if slot name is freed insideSerhiy Storchaka2015-11-251-1/+5
* Issue #24731: Fixed crash on converting objects with special methodsSerhiy Storchaka2015-11-253-3/+3
* Issue #25678: Copy buffer objects to null-terminated strings.Serhiy Storchaka2015-11-203-6/+32
* Issue #22995: Default implementation of __reduce__ and __reduce_ex__ nowSerhiy Storchaka2015-11-121-0/+7
* Issue #7267: format(int, 'c') now raises OverflowError when the argument is notVictor Stinner2015-11-091-0/+8
* Issue #24848: Fixed yet one bug in UTF-7 decoder. Testing for BASE64 characterSerhiy Storchaka2015-10-101-1/+4
* Issue #25326: Improve an obscure error message.Raymond Hettinger2015-10-091-1/+1
* prevent unacceptable bases from becoming bases through multiple inheritance (...Benjamin Peterson2015-10-071-7/+6
* Issue #24848: Fixed bugs in UTF-7 decoding of misformed data:Serhiy Storchaka2015-10-021-7/+9
* make comment not lie about the size of SMALL_REQUEST_THRESHOLDBenjamin Peterson2015-07-301-1/+1
* Issue #24467: Fixed possible buffer over-read in bytearray. The bytearraySerhiy Storchaka2015-06-291-1/+3
* Fixed indentation of Python examples in C comments.Serhiy Storchaka2015-06-102-10/+10
* Issue #19543: Emit deprecation warning for known non-text encodings.Serhiy Storchaka2015-05-313-9/+9