summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Get rid of remnants of integer divisionNeal Norwitz2006-03-2412-120/+7
* Get rid of xreadlines() (methods).Neal Norwitz2006-03-171-7/+0
* Checkpoint. 218 tests are okay; 53 are failing. Done so far:Guido van Rossum2006-03-151-12/+2
* Fix and test (manually w/xx module) passing NULLs to PyObject_Str() andNeal Norwitz2006-03-141-5/+7
* Fix bug found by Coverity: don't allow NULL argument to PyUnicode_CheckExactGeorg Brandl2006-03-131-2/+2
* - Reindent a confusingly indented piece of code (no intended code changesThomas Wouters2006-03-121-13/+16
* Um, I thought I'd already checked this in.Guido van Rossum2006-03-101-26/+1
* Fix three nits found by Coverity, adding null checks and comments.Guido van Rossum2006-03-101-3/+15
* Update Unicode database to Unicode 4.1.Martin v. Löwis2006-03-092-651/+830
* Patch #1434038: property() now uses the getter's docstring if there isGeorg Brandl2006-03-081-0/+12
* Checking in the code for PEP 357.Guido van Rossum2006-03-079-68/+180
* SF #1444030: Fix several potential defects found by Coverity.Hye-Shik Chang2006-03-074-11/+30
* Change int to Py_ssize_t in several places.Martin v. Löwis2006-03-075-10/+19
* Oops, forgot to include this in the last checkin.Neal Norwitz2006-03-041-1/+1
* Change some sequnce APIs to use Py_ssize_t.Neal Norwitz2006-03-041-5/+9
* Use Py_ssize_t for PySet_Size() like all the other Py*_Size() functions.Neal Norwitz2006-03-041-1/+1
* Use %ld and casts to long for refcount printing, in absense of a universallyThomas Wouters2006-03-013-12/+31
* PEP 352 implementation. Creates a new base class, BaseException, which has anBrett Cannon2006-03-011-3/+3
* Updates to the with-statement:Guido van Rossum2006-02-281-3/+37
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-2720-23/+23
* Oops. Fix syntax for C89 compilers.Guido van Rossum2006-02-251-2/+2
* - Patch 1433928:Guido van Rossum2006-02-251-1/+15
* RFE #1436243: make integers in [0..256] preallocated.Georg Brandl2006-02-221-1/+1
* Make staticmethod and classmethod complain about keyword args.Georg Brandl2006-02-211-0/+4
* Bug #1086854: Rename PyHeapType members adding ht_ prefix.Georg Brandl2006-02-201-9/+9
* Remove size constraints in SLICE opcodes.Martin v. Löwis2006-02-171-3/+3
* Use proper PyArg_Parse format char for Py_ssize_t, instead of 'l', inThomas Wouters2006-02-161-1/+1
* Use correct PyArg_Parse format char for Py_ssize_t in unicode.center().Thomas Wouters2006-02-161-1/+1
* Use Py_ssize_t in helper function between Py_ssize_t-using functions.Thomas Wouters2006-02-161-2/+2
* Use Py_ssize_t for counts and sizes.Martin v. Löwis2006-02-1610-31/+33
* Oops, this is supposed to be disabled by default.Neal Norwitz2006-02-161-1/+1
* Revert 42400.Martin v. Löwis2006-02-165-11/+11
* Support %zd in PyErr_Format and PyString_FromFormat.Martin v. Löwis2006-02-168-19/+35
* Get rid of compiler warnings (gcc 3.3.4 on x86)Neal Norwitz2006-02-165-11/+11
* doubletounicode(), longtounicode():Tim Peters2006-02-161-4/+8
* Remove two unused Py_ssize_t variables (merge glitches, looks like.)Thomas Wouters2006-02-151-2/+0
* Avoid unused variables when SIZEOF_SIZE_T == SIZEOF_LONG. Also normalizeThomas Wouters2006-02-151-1/+3
* Merge ssize_t branch.Martin v. Löwis2006-02-1529-1022/+1205
* * Refcount leak. It was just a reference to Py_None, but still.Armin Rigo2006-02-141-3/+9
* SF patch #1397960: When mixing file-iteration andThomas Wouters2006-02-121-2/+39
* Renamed _length_cue() to __length_hint__(). See:Armin Rigo2006-02-118-18/+18
* As discussed on python-dev, silence three gcc-4.0.x warnings, using assert()Thomas Wouters2006-02-011-2/+9
* Fix SF #1412837, compile failed with Watcom compilerNeal Norwitz2006-01-241-5/+5
* - Patch #1400181, fix unicode string formatting to not use the locale.Neal Norwitz2006-01-101-16/+21
* Remove some shadowed variablesNeal Norwitz2006-01-083-4/+4
* strlen() returns a size_t, get rid of 64-bit warningNeal Norwitz2006-01-081-1/+1
* Fix icc warnings: remove (sometimes) unused variable conditionallyNeal Norwitz2006-01-081-2/+4
* Fix icc warnings: remove unused variableNeal Norwitz2006-01-081-2/+1
* Stop maintaining the buildno file.Martin v. Löwis2006-01-051-12/+15
* Fix ref/memory leak introduced in rev 41845.Neal Norwitz2006-01-021-0/+2