summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Fix compiler warning about finite() missing on Solaris.Neal Norwitz2008-03-282-0/+8
* Revert r61969 which added casts to Py_CHARMASK to avoid compiler warnings.Neal Norwitz2008-03-282-7/+7
* Pluralss only need one s, not 2 (intss -> ints)Neal Norwitz2008-03-272-2/+2
* Fix warnings about using char as an array subscript. This is not portableNeal Norwitz2008-03-272-7/+7
* Fix memory leaksNeal Norwitz2008-03-271-2/+6
* Fix bytes so it works on 64-bit platforms.Neal Norwitz2008-03-271-14/+5
* Merged revisions 61750,61752,61754,61756,61760,61763,61768,61772,61775,61805,...Christian Heimes2008-03-269-2/+4489
* Move declarations to block start.Georg Brandl2008-03-251-4/+4
* Fix tabs.Georg Brandl2008-03-252-2/+2
* Make Py3k warnings consistent w.r.t. punctuation; also respect theGeorg Brandl2008-03-259-33/+42
* #2355: py3k warning for buffer().Georg Brandl2008-03-251-0/+5
* Try to fix a bunch of compiler warnings on Win64.Neal Norwitz2008-03-251-1/+1
* Issue2469: Correct a typo I introduced at r61793: compilation error with UCS4...Amaury Forgeot d'Arc2008-03-241-1/+1
* #1477: ur'\U0010FFFF' raised in narrow unicode builds.Amaury Forgeot d'Arc2008-03-231-4/+42
* Remove compiler warnings (on Alpha at least) about using chars asNeal Norwitz2008-03-231-4/+4
* #2348: add py3k warning for file.softspace.Georg Brandl2008-03-211-2/+34
* #2346/#2347: add py3k warning for __methods__ and __members__. Patch by Jack ...Georg Brandl2008-03-212-1/+18
* Remove unnecessary traceback save/restore pair.Raymond Hettinger2008-03-191-4/+2
* Issue 2354: Fix-up compare warning. Patch contributed by Jeff Balogh.Raymond Hettinger2008-03-191-1/+1
* Fix compiler warning.Raymond Hettinger2008-03-191-1/+1
* Issue: 2354: Add 3K warning for the cmp argument to list.sort() and sorted().Raymond Hettinger2008-03-181-0/+5
* Speed-up isinstance() for one easy case.Raymond Hettinger2008-03-181-0/+5
* Add py3k warnings for code and method inequality comparisons. This should res...Steven Bethard2008-03-182-2/+102
* cell_compare needs to return -2 instead of NULL.Steven Bethard2008-03-181-1/+1
* Add py3k warnings for object, type, cell and dict comparisons. This should re...Steven Bethard2008-03-184-3/+67
* Remove all traces of HAVE_STRERROR.Brett Cannon2008-03-181-8/+0
* Issue 2332: add new attribute names for instance method objectsNeal Norwitz2008-03-181-0/+4
* Finish backporting new buffer API to Python 2.6. Left to do: memoryview obje...Travis E. Oliphant2008-03-182-0/+374
* - Issue 2379: Raise a Py3K warning for __getitem__ or __getslice__ onGuido van Rossum2008-03-181-0/+12
* Fix build on platforms that don't have intptr_t. Patch by Joseph Armbruster.Jeffrey Yasskin2008-03-182-2/+2
* Fix the IOError message text when opening a file with an invalid filename.Gregory P. Smith2008-03-181-2/+5
* Issue 2321: reduce memory usage (increase the memory that is returnedNeal Norwitz2008-03-171-17/+21
* Finished backporting PEP 3127, Integer Literal Support and Syntax.Eric Smith2008-03-171-1/+14
* Issue 2264: empty float presentation type needs to have at least one digit pa...Eric Smith2008-03-171-1/+6
* Issue 705836: Fix struct.pack(">f", 1e40) to behave consistentlyMark Dickinson2008-03-141-8/+8
* Fix the overflows in expandtabs(). "This time for sure!"Guido van Rossum2008-03-112-50/+65
* Move abc._Abstract into object by adding a new flag Py_TPFLAGS_IS_ABSTRACT,Jeffrey Yasskin2008-02-281-0/+103
* Corrected assert to check for correct type in py3k.Eric Smith2008-02-241-1/+1
* Use PY_FORMAT_SIZE_T instead of z for string formatting. Thanks Neal.Christian Heimes2008-02-242-4/+8
* Issue 1742669. Now %d accepts very big float numbers.Facundo Batista2008-02-242-29/+88
* #2067: file.__exit__() now calls subclasses' close() method.Georg Brandl2008-02-231-2/+2
* Now that PyOS_ascii_formatd supports the 'n' format, simplify the float forma...Eric Smith2008-02-201-40/+15
* Added code to correct combining str and unicode in ''.format(). Added test c...Eric Smith2008-02-181-0/+16
* Backport of PEP 3101, Advanced String Formatting, from py3k.Eric Smith2008-02-1711-23/+2606
* Prevent a crash with nested scopes, again caused by calling Py_DECREF when th...Amaury Forgeot d'Arc2008-02-161-1/+3
* Issue #2115: __slot__ attributes setting was 10x slower.Amaury Forgeot d'Arc2008-02-151-1/+1
* In PyNumber_ToBase, changed from an assert to returning an error when PyObjec...Eric Smith2008-02-151-1/+5
* Fixed repr() and str() of complex numbers. Complex suffered from the same pro...Christian Heimes2008-02-151-7/+40
* Use a static and interned string for __subclasscheck__ and __instancecheck__ ...Christian Heimes2008-02-141-2/+16
* Implemented Martin's suggestion to clear the free lists during the garbage co...Christian Heimes2008-02-145-25/+73