summaryrefslogtreecommitdiff
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* remove strange castsBenjamin Peterson2014-11-231-4/+4
* Closes #22772: fix __ifloordiv__ and __itruediv__ docstring.Georg Brandl2014-10-311-2/+2
* Issue #22604: Fix assertion error in debug mode when dividing a complex numbe...Antoine Pitrou2014-10-101-2/+6
* use Py_ssize_t for file offset and length computations in iteration (closes #...Benjamin Peterson2014-09-301-8/+7
* fix overflow checking in PyString_Repr (closes #22519)Benjamin Peterson2014-09-291-2/+3
* cleanup overflowing handling in unicode_decode_call_errorhandler and unicode_...Benjamin Peterson2014-09-291-21/+48
* give exception a nice message (closes #22379)Benjamin Peterson2014-09-281-1/+1
* Fix typo in comment.Raymond Hettinger2014-08-011-1/+1
* Issue #22023: Fix %S, %R and %V formats of PyUnicode_FromFormat().Victor Stinner2014-07-301-9/+9
* don't overwrite the error from PyObject_GetAttrString (closes #4346)Benjamin Peterson2014-06-261-8/+4
* avoid overflow with large buffer sizes and/or offsets (closes #21831)Benjamin Peterson2014-06-231-2/+2
* Merge.Charles-Fran?ois Natali2014-06-191-4/+9
|\
| * Issue #21810: Backport mmap-based arena allocation failure check.Charles-Fran?ois Natali2014-06-191-4/+9
* | Issue 8743: Improve interoperability between sets and the collections.Set ab...Raymond Hettinger2014-05-251-6/+2
* | Issue #21350: Fix file.writelines() to accept arbitrary buffer objects, as ad...Antoine Pitrou2014-05-081-7/+7
* | Issue #20434 Correct error handlin of _PyString_Resize and _PyBytes_ResizeKristj?n Valur J?nsson2014-04-252-6/+4
* | Issue #12546: Allow \x00 as a fill character for builtin type __format__ meth...Eric V. Smith2014-04-141-10/+8
* | bail in unicode error's __str__ methods if the objects are not properly initi...Benjamin Peterson2014-04-021-0/+12
* | fix expandtabs overflow detection to be consistent and not rely on signed ove...Benjamin Peterson2014-03-301-19/+19
* | add braces and fix indentationBenjamin Peterson2014-03-301-17/+18
* | fix indentation and add bracesBenjamin Peterson2014-03-301-16/+17
* | give non-iterable TypeError a message (closes #20507)Benjamin Peterson2014-02-151-1/+1
* | Issue #19255: Clear error after failed PyDict_SetItem() on shutdown.Serhiy Storchaka2014-02-121-2/+4
* | Issue #20437: Fixed 43 potential bugs when deleting objects references.Serhiy Storchaka2014-02-092-8/+4
|/
* mmap obmalloc arenas so that they may be immediately returned to the system w...Benjamin Peterson2014-02-041-13/+37
* Circumventing a bug in glibc (issue #17976).Serhiy Storchaka2013-12-171-3/+5
* Issue #17976: Fixed potential problem with file.write() not detecting IO errorSerhiy Storchaka2013-12-171-1/+5
* Issue #14432: Generator now clears the borrowed reference to the thread stateVictor Stinner2013-12-131-0/+3
* Issue #6477: Revert fbb97f6eb3b3 as it broke test_xpickle.Alexandre Vassalotti2013-11-301-2/+2
* Issue #6477: Added pickling support for singletons and their types.Alexandre Vassalotti2013-11-301-2/+2
* fix docstring. extra \.Gregory P. Smith2013-11-251-1/+1
* Document that @property can incorporate a docstring from the getter method. ...Raymond Hettinger2013-11-241-5/+9
* Issue #19279: UTF-7 decoder no more produces illegal unicode strings.Serhiy Storchaka2013-10-191-0/+2
* Issue #19171: speed some cases of 3-argument long pow().Tim Peters2013-10-051-4/+10
* #19069: use imperative mood in float object docstrings. Patch by Marco Buttu.Ezio Melotti2013-10-061-9/+9
* #19068: use imperative mood in complex object docstrings. Patch by Marco Buttu.Ezio Melotti2013-10-061-2/+2
* Various clarifications based on feedback & questions over the years.Tim Peters2013-08-241-19/+96
* Add line explaining the "%sort" test.Tim Peters2013-08-221-0/+1
* Issue 18719: Remove a false optimizationRaymond Hettinger2013-08-131-1/+0
* Issue #15866: The xmlcharrefreplace error handler no more produces two XMLSerhiy Storchaka2013-08-061-21/+61
* Silence compiler warning for unused declaration.Raymond Hettinger2013-08-041-1/+0
* Issue #18427: str.replace could crash the interpreter with huge strings.Ronald Oussoren2013-07-111-3/+3
* Issue #18184: PyUnicode_FromFormat() and PyUnicode_FromFormatV() now raiseSerhiy Storchaka2013-06-231-1/+18
* Issue #18137: Detect integer overflow on precision in float.__format__()Victor Stinner2013-06-231-2/+14
* add missing NULL check (closes #18019)Benjamin Peterson2013-05-191-0/+4
* Issue #16447: Fix potential segfault when setting __name__ on a class.Mark Dickinson2013-04-131-1/+5
* list slotdefs in offset order rather than sorting them (closes #17610)Benjamin Peterson2013-04-071-131/+114
* Revert a premature patch for issue #14010 (changeset d17d10c84d27).Serhiy Storchaka2013-04-061-3/+0
* Issue #14010: Fix a crash when iterating or deleting deeply nested filtersSerhiy Storchaka2013-04-061-0/+3
* allow any type with __getitem__ to be a mapping for the purposes of % (#15801)Benjamin Peterson2013-03-232-4/+4