summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Patch #837242: id() for large ptr should return a long.Martin v. Löwis2006-04-101-3/+9
* SF Patch #1463867: Improved generator finalization to allow generatorsPhillip J. Eby2006-04-101-0/+20
* Remove dead code (reported by HP compiler).Neal Norwitz2006-04-061-8/+5
* Add PY_SSIZE_T_MIN, as suggested by Ralf W. Grosse-Kunstleve.Martin v. Löwis2006-04-051-1/+1
* Make xrange more Py_ssize_t aware, by assuming a Py_ssize_t is always atThomas Wouters2006-04-041-7/+0
* Allow long integers in PySlice_GetIndices.Martin v. Löwis2006-04-031-3/+3
* Use Py_ssize_t in slicesNeal Norwitz2006-04-031-5/+5
* Bug #1177964: make file iterator raise MemoryError on too big filesGeorg Brandl2006-03-311-1/+2
* SF patch #1458476 with modifications based on discussions in python-dev. ThisBarry Warsaw2006-03-301-1/+68
* Minor bugs in the __index__ code (PEP 357), with tests.Armin Rigo2006-03-302-34/+24
* That one was a mistake.Georg Brandl2006-03-301-1/+1
* Remove unnecessary casts in type object initializers.Georg Brandl2006-03-3020-271/+272
* Fixed bug #1459029 - unicode reprs were double-escaped.Anthony Baxter2006-03-301-1/+1
* fix a comment.Armin Rigo2006-03-281-1/+1
* Tighten an overbroad and misleading assertion.Raymond Hettinger2006-03-261-1/+1
* Get rid of warnings on some platforms by using %u for a size_t.Neal Norwitz2006-03-251-1/+1
* Support throw() of string exceptions.Phillip J. Eby2006-03-251-1/+4
* Stop duplicating code and handle slice indices consistently and correctlyNeal Norwitz2006-03-233-44/+24
* Heh -- used the right format for a refcount, but forgotTim Peters2006-03-231-1/+1
* _Py_NegativeRefcount(): print the full value of ob_refcnt.Tim Peters2006-03-231-3/+2
* Update function name to reflect params and stop casting to long to avoid losi...Neal Norwitz2006-03-201-5/+5
* Use macro versions instead of function versions when we already know the type.Neal Norwitz2006-03-203-11/+12
* Previously, Python code had no easy way to access the contents of aGeorg Brandl2006-03-181-0/+19
* Fix some missing checks after PyTuple_New, PyList_New, PyDict_NewGeorg Brandl2006-03-172-1/+5
* Introduced symbol PY_FORMAT_SIZE_T. See the new commentsTim Peters2006-03-171-31/+22
* Merge the tim-obmalloc branch to the trunk.Tim Peters2006-03-161-205/+525
* 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