summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* detabify Objects/unicodeobject.cBenjamin Peterson2009-01-311-3092/+3092
* Issue #4707: round(x, n) now returns an integer when x is an integer.Mark Dickinson2009-01-281-20/+128
* Merged revisions 68974-68975 via svnmerge fromMark Dickinson2009-01-261-8/+9
* Merged revisions 68947 via svnmerge fromMark Dickinson2009-01-251-1/+1
* Merged revisions 68890 via svnmerge fromMark Dickinson2009-01-241-23/+20
* Some minor cleanups in PyLong_FromLong:Mark Dickinson2009-01-241-12/+15
* Merged revisions 68750,68776-68777,68811,68842,68859 via svnmerge fromBenjamin Peterson2009-01-231-1/+1
* Issue 4842, patch 2/2: int('3L') should be invalid in Python 3.x.Mark Dickinson2009-01-201-2/+0
* Merged revisions 68633,68648,68667,68706,68718,68720-68721,68724-68727,68739 ...Benjamin Peterson2009-01-181-1/+1
* Merged revisions 68568,68665 via svnmerge fromBenjamin Peterson2009-01-181-2/+2
* Replace PyNumber_Int with PyNumber_Long.Mark Dickinson2009-01-171-1/+1
* Issue #4838: When a module is deallocated, free the memory backing the option...Antoine Pitrou2009-01-171-0/+2
* Remove attempted long->int conversions in py3k version of float.as_integer_ra...Mark Dickinson2009-01-171-6/+0
* Issue #4910, patch 3/3: rename nb_long to nb_reservedMark Dickinson2009-01-177-10/+6
* Issue 4910, patch 2 of (probably) 3: pave the way for renaming ofMark Dickinson2009-01-154-13/+4
* Issue #4935: The overflow checking code in the expandtabs() method commonAntoine Pitrou2009-01-131-37/+30
* Merged revisions 68560 via svnmerge fromAmaury Forgeot d'Arc2009-01-123-2/+19
* Issue #4910 (1st patch of a series): fix int() and the correspondingMark Dickinson2009-01-121-13/+1
* Issue #4916: fix little-endian UTF-16 decoding bug on big-endian UCS-4 builds...Antoine Pitrou2009-01-111-8/+16
* Merged revisions 68381 via svnmerge fromBenjamin Peterson2009-01-113-11/+16
* Issue #4910: replace "long" with "int" in docstring for __long__ slot andMark Dickinson2009-01-101-1/+1
* Issue #4868: utf-8, utf-16 and latin1 decoding are now 2x to 4x faster. TheAntoine Pitrou2009-01-101-24/+207
* Reduce the size of the _PyLong_DigitValue table.Raymond Hettinger2009-01-091-3/+3
* Issue #4822: fix messy indentation in memoryobject.c/.h, before we may backpo...Antoine Pitrou2009-01-031-432/+431
* Issue #4580: slicing of memoryviews when itemsize != 1 is wrong.Antoine Pitrou2009-01-032-69/+64
* Remove traces of Py_InitModule*.Georg Brandl2009-01-021-2/+2
* Merged revisions 68128 via svnmerge fromAntoine Pitrou2009-01-012-20/+45
* Recorded merge of revisions 68051 via svnmerge fromNick Coghlan2008-12-301-0/+11
* #4759: allow None as first argument of bytearray.translate(), for consistency...Georg Brandl2008-12-281-16/+25
* Remove confusing error message in bytes.translate.Georg Brandl2008-12-271-5/+0
* Revert unwanted function name change introduced by r67939.Alexandre Vassalotti2008-12-271-1/+1
* Fixed incompatible pointer warning.Hirokazu Yamamoto2008-12-271-1/+1
* Fix bogus assertion.Alexandre Vassalotti2008-12-271-1/+1
* Optimize built-in unicode codecs by avoiding unnecessary copying.Alexandre Vassalotti2008-12-271-50/+58
* Fix wrong bytes type conversion in PyUnicode_AsUnicodeEscapeString.Alexandre Vassalotti2008-12-271-15/+4
* Merged revisions 67932 via svnmerge fromAlexandre Vassalotti2008-12-271-28/+30
* Merged revisions 67654,67676-67677,67681,67692,67725,67761,67784-67785,67787-...Benjamin Peterson2008-12-211-0/+3
* Issue #3106: Speedup some comparisons. This also removes the last callAntoine Pitrou2008-12-202-73/+88
* Add missing Py_CHARMASK when calling isspace().Kristján Valur Jónsson2008-12-181-2/+2
* Forward merge of r67822 to py3k: add bit_length method to int.Mark Dickinson2008-12-171-0/+71
* Issue #4569: Interpreter crash when mutating a memoryview with an item size l...Antoine Pitrou2008-12-071-93/+105
* Issue #4509: bugs in bytearray with exports (buffer protocol)Antoine Pitrou2008-12-061-11/+31
* Issue #4445: save 3 bytes of memory (on average) per bytes allocation.Mark Dickinson2008-12-061-10/+18
* Issue 4497: silence compiler warnings on Windows.Mark Dickinson2008-12-051-4/+4
* Issue 3689: list_reverseiterator should support __length_hint__ instead of _...Raymond Hettinger2008-12-021-8/+9
* Update copyright for recent changes.Raymond Hettinger2008-11-301-1/+1
* Merged revisions 67348,67355,67359,67362,67364-67365,67367-67368,67398,67423-...Benjamin Peterson2008-11-301-1/+1
* Fix for bug 4360 "SystemError when method has both super() & closure". PatchBarry Warsaw2008-11-201-2/+3
* Merged revisions 67291 via svnmerge fromBenjamin Peterson2008-11-191-17/+3
* Merged revisions 67246 via svnmerge fromBenjamin Peterson2008-11-171-3/+36