summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Issue 3048: Fixed sys.getsizeof for unicode objects.Robert Schuppenies2008-06-101-0/+24
* Added better pickling support to xrange objects.Alexandre Vassalotti2008-06-101-3/+3
* Issue 2582: Fix pickling of xrange objects.Alexandre Vassalotti2008-06-101-0/+11
* Let set.intersection() and set.intersection_update() take multiple input argu...Raymond Hettinger2008-06-091-3/+36
* Let set.union() and set.update() accept multiple inputs.Raymond Hettinger2008-06-091-15/+38
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-0933-610/+610
* Remove locking part of new buffer protocol.Travis E. Oliphant2008-06-061-6/+0
* Fixed complex.__getnewargs__() to not emit another complex object.Alexandre Vassalotti2008-06-041-1/+2
* Some style nits. Also clarify in the docstrings what __sizeof__ does.Georg Brandl2008-06-015-5/+5
* Issue #2898: Added sys.getsizeof() to retrieve size of objects in bytes.Robert Schuppenies2008-06-015-0/+69
* New environment variable PYTHONIOENCODING.Martin v. Löwis2008-06-011-3/+32
* Refactor and clean up str.format() code (and helpers) in advance of optimizat...Eric Smith2008-05-306-124/+138
* #2999: fix name of third parameter in unicode.replace()'s docstring.Georg Brandl2008-05-301-3/+3
* Issue 2855: Fix obscure crasher by slowing down the entire module. Mimics wh...Raymond Hettinger2008-05-301-0/+4
* Revert #2990 patch; it's not necessary as Armin showed.Georg Brandl2008-05-291-7/+5
* #2990: prevent inconsistent state while updating method cache.Georg Brandl2008-05-281-5/+7
* #2989: add PyType_Modified().Georg Brandl2008-05-281-10/+9
* Renamed bytesobject.c to bytearrayobject.cChristian Heimes2008-05-263-8054/+8054
* Renamed PyString to PyBytesChristian Heimes2008-05-2635-1094/+1094
* First step of the C API rename:Christian Heimes2008-05-264-241/+241
* #2592: delegate nb_index and the floor/truediv slots in weakref.proxy.Georg Brandl2008-05-201-0/+10
* Revert copy_reg -> copyreg rename.Georg Brandl2008-05-201-3/+3
* #2353: raise Py3k warning in file.xreadlines().Georg Brandl2008-05-171-3/+12
* Patch by Quentin Gallet-Gilles: Renaming leftovers for 2.6.Alexandre Vassalotti2008-05-161-1/+1
* Don't allow keyword arguments to reversed().Georg Brandl2008-05-161-1/+4
* Make generator repr consistent with function and code object repr.Georg Brandl2008-05-161-1/+1
* #2863: add gen.__name__ and add this name to generator repr().Georg Brandl2008-05-151-2/+32
* #2831: add start argument to enumerate(). Patch by Scott Dial and me.Georg Brandl2008-05-131-5/+23
* #2809 followup: even better split docstring.Georg Brandl2008-05-112-4/+4
* Addresses issue 2802: 'n' formatting for integers.Eric Smith2008-05-115-3/+154
* #2809: elaborate str.split docstring a bit.Georg Brandl2008-05-112-3/+5
* Added module stub for copy_reg renaming in 3.0.Alexandre Vassalotti2008-05-111-22/+22
* Backport fast alternate io.BytesIO implementation.Alexandre Vassalotti2008-05-091-2/+2
* Issue #2801: fix bug in float.is_integer where ValueErrorMark Dickinson2008-05-091-0/+1
* Frozensets do not benefit from autoconversion.Raymond Hettinger2008-05-081-3/+3
* A little reformating of Py3k warningsBenjamin Peterson2008-04-277-18/+16
* Use PyErr_WarnPy3k throughoutBenjamin Peterson2008-04-2710-49/+26
* I finally got the time to update and merge Mark's and my trunk-math branch. T...Christian Heimes2008-04-185-729/+167
* Fix for possible signed overflow: the behaviour of -LONG_MIN isMark Dickinson2008-04-151-6/+19
* Prevent namespace pollution, add static for internal functionsNeal Norwitz2008-04-152-5/+5
* Backport manually r62342 from the py3k branch to the trunk.Alexandre Vassalotti2008-04-141-17/+23
* get rid of assert (size >= 0) now that an explicit if (size < 0) is in the code.Gregory P. Smith2008-04-103-3/+0
* Raise SystemError when size < 0 is passed into PyString_FromStringAndSize,Gregory P. Smith2008-04-093-0/+18
* Bug #2388: Fix gcc warnings when compiling with --enable-unicode=ucs4.Martin v. Löwis2008-04-073-6/+25
* Make file objects as thread safe as the underlying libc FILE* implementation.Gregory P. Smith2008-04-061-81/+164
* 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