summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Fix typo.Georg Brandl2010-12-041-1/+1
* Removed static function complex_format, moved it into complex_repr. Modified ...Eric Smith2010-12-041-10/+8
* Use copysign to produce appropriately signed zeros instead of trying to worm ...Mark Dickinson2010-12-041-12/+5
* Issue #10596: Fix float.__mod__ to have the same behaviour asMark Dickinson2010-12-041-4/+14
* Remove some unecessary '#ifdef Py_NAN's from floatobject.cMark Dickinson2010-12-041-6/+0
* Fix indentation in Objects/longobject.cMark Dickinson2010-12-041-3/+3
* Regenerate.Martin v. Löwis2010-12-041-0/+1
* Add Revision keyword.Martin v. Löwis2010-12-041-0/+1
* Make script 2-vs-3-agnostic.Martin v. Löwis2010-12-041-1/+1
* Issue #10557: Fixed error messages from float() and other numericAlexander Belopolsky2010-12-044-48/+106
* Merge branches/pep-0384.Martin v. Löwis2010-12-0315-20/+186
* #6780: fix complex() constructor TypeError messageVictor Stinner2010-12-031-1/+1
* Issue 2690: Add support for slicing and negative indices to range objects (in...Nick Coghlan2010-12-031-100/+184
* Remove redundant check for PyBytes in unicode_encode.Georg Brandl2010-12-031-17/+1
* code styleBenjamin Peterson2010-12-031-5/+10
* Issue9915: speeding up sorting with a keyDaniel Stutzbach2010-12-021-225/+238
* #7475: add (un)transform method to bytes/bytearray and str, add back codecs t...Georg Brandl2010-12-023-1/+182
* Issue #8685: Speed up set difference `a - b` when source set `a` isAntoine Pitrou2010-11-301-7/+22
* Remove redundant includes of headers that are already included by Python.h.Georg Brandl2010-11-305-6/+0
* Include structseq.h in Python.h, and remove now-redundant includes in individ...Georg Brandl2010-11-303-3/+0
* Indentation cleanup.Stefan Krah2010-11-261-9/+9
* Issue #7094: Add alternate ('#') flag to __format__ methods for float, comple...Eric Smith2010-11-251-16/+6
* pep 7 actually wants the brace on a new lineBenjamin Peterson2010-11-201-22/+44
* code style and simplificationBenjamin Peterson2010-11-201-72/+31
* Add error handling in range_count.Georg Brandl2010-11-201-1/+4
* count() should return integers #10474Benjamin Peterson2010-11-201-2/+2
* code styleBenjamin Peterson2010-11-201-8/+4
* #1574217: only swallow AttributeErrors in isinstance, not everything.R. David Murray2010-11-201-3/+12
* handle dict subclasses gracefully in PyArg_ValidateKeywordArgumentsBenjamin Peterson2010-11-171-1/+1
* Issue #10359: Remove ";" after function definition, invalid in ISO CVictor Stinner2010-11-091-1/+1
* PyUnicode_DecodeFSDefaultAndSize() raises MemoryError if _Py_char2wchar() failsVictor Stinner2010-11-081-1/+1
* PyUnicode_EncodeFS() raises an exception if _Py_wchar2char() failsVictor Stinner2010-11-081-3/+20
* str, bytes, bytearray docstring: remove unnecessary [...]Victor Stinner2010-11-073-3/+3
* Fix encode/decode method doc of str, bytes, bytearray typesVictor Stinner2010-11-073-9/+9
* Added more to docstrings for str.format, format_map, and __format__.Eric Smith2010-11-061-3/+5
* Issue #10288: The deprecated family of "char"-handling macrosDavid Malcolm2010-11-052-24/+24
* Followup to r86170: fix reference leak in str.formatAntoine Pitrou2010-11-051-1/+0
* Issue #10293: Remove obsolete field in the PyMemoryView structure,Antoine Pitrou2010-11-041-44/+1
* Issue #6081: Add str.format_map. str.format_map(mapping) is similar to str.fo...Eric Smith2010-11-042-1/+16
* deuglifyBenjamin Peterson2010-11-031-2/+3
* Issue 10221: Improve error message for dict.pop().Raymond Hettinger2010-10-301-2/+1
* Issue #5437: A preallocated MemoryError instance should not hold tracebackAntoine Pitrou2010-10-281-10/+87
* Simplify PyUnicode_Encode/DecodeFSDefault on Windows/Mac OS XVictor Stinner2010-10-271-16/+18
* Add a new warning gategory, ResourceWarning, as discussed on python-dev. It ...Georg Brandl2010-10-241-0/+10
* Follow up to #9778: fix regressions on 64-bit Windows buildsAntoine Pitrou2010-10-232-16/+7
* follow up to #9778: define and use an unsigned hash typeBenjamin Peterson2010-10-235-18/+18
* Revert r85797 (and r85798): it broke the Windows buildbots because ofAntoine Pitrou2010-10-221-48/+30
* Issue #9935: Speed up pickling of instances of user-defined classes.Antoine Pitrou2010-10-221-30/+48
* Issue #4388: On Mac OS X, decode command line arguments from UTF-8, instead ofVictor Stinner2010-10-201-0/+114
* PyUnicode_FromFormatV(): Fix %A formatVictor Stinner2010-10-181-0/+1