summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
...
* | correct assertionBenjamin Peterson2011-01-171-1/+1
* | turn some checks into assertions, since they are implied by the callerBenjamin Peterson2011-01-171-4/+2
* | rangeobject.c (compute_slice_indices): Make function static.Matthias Klose2011-01-161-1/+1
* | plug reference leakBenjamin Peterson2011-01-131-2/+4
* | use PyErr_SetString instead of PyErr_FormatBenjamin Peterson2011-01-121-2/+2
* | don't segfault on deleting __abstractmethods__ #10892Benjamin Peterson2011-01-121-2/+11
* | Issue 10889: Support slicing and indexing of large ranges (no docs changes, s...Nick Coghlan2011-01-121-67/+306
* | Issue #8020: Avoid a crash where the small objects allocator would readAntoine Pitrou2011-01-071-6/+22
* | Drop bf_getbuffer/bf_releasebuffer from stable ABI,Martin v. Löwis2011-01-061-3/+3
* | Support comment lines and missing indices in typeslots.h.Martin v. Löwis2011-01-061-1/+6
* | Remove arbitrary string length limitsVictor Stinner2011-01-051-2/+2
* | Issue #9015, #9611: stdprinter.write() clamps the length to 2^31-1 on WindowsVictor Stinner2011-01-041-2/+8
* | Issue #9566: use Py_ssize_t instead of intVictor Stinner2011-01-043-6/+7
* | Removed unneeded #includeAlexander Belopolsky2010-12-221-2/+0
* | #5587: add a repr to dict_proxy objects. Patch by David Stanek and Daniel Ur...Ezio Melotti2010-12-181-1/+7
* | #4236: avoid possible Fatal Error when import is called from __del__R. David Murray2010-12-141-2/+3
* | remove (un)transform methodsBenjamin Peterson2010-12-123-181/+1
* | Reverted accidental commit (from r87159)Alexander Belopolsky2010-12-101-17/+3
* | Updated UCD version and unicode.org links to Unicode 6.0.0Alexander Belopolsky2010-12-101-3/+17
* | use the more direct APIBenjamin Peterson2010-12-071-3/+3
* | return views from dict proxy items/values/keys #10630Benjamin Peterson2010-12-071-3/+3
* | 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