summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Make Py_BuildValue, PyObject_CallFunction andMartin v. Löwis2006-04-143-28/+92
* Change more occurrences of maxsplit to Py_ssize_t.Martin v. Löwis2006-04-131-4/+4
* Change maxsplit types to Py_ssize_t.Martin v. Löwis2006-04-131-4/+4
* Replace INT_MAX with PY_SSIZE_T_MAX.Martin v. Löwis2006-04-131-2/+2
* Replace INT_MAX with PY_SSIZE_T_MAX where string lengthMartin v. Löwis2006-04-131-4/+4
* Remove another INT_MAX limitationMartin v. Löwis2006-04-131-2/+1
* Replace most INT_MAX with PY_SSIZE_T_MAX.Martin v. Löwis2006-04-131-11/+11
* Change more ints to Py_ssize_t.Martin v. Löwis2006-04-131-40/+39
* Revert 34153: Py_UNICODE should not be signed.Martin v. Löwis2006-04-131-8/+3
* spread the extern "C" { } magic pixie dust around. Python itself builds nowAnthony Baxter2006-04-133-0/+28
* Add a cast to make code compile with a C++ compiler.Anthony Baxter2006-04-131-1/+1
* Don't set gi_frame to Py_None, use NULL instead, eliminating some insanePhillip J. Eby2006-04-121-7/+7
* Ignore the references to the dummy objects used as deleted keysArmin Rigo2006-04-123-1/+34
* wrap docstrings so they are less than 80 columns. add spaces after commas.Neal Norwitz2006-04-121-3/+5
* gen_throw(): The caller doesn't own PyArg_ParseTuple()Tim Peters2006-04-121-3/+1
* Fix int() and long() to repr() their argument when formatting the exception,Thomas Wouters2006-04-112-6/+28
* _Py_PrintReferenceAddresses,_Py_PrintReferences:Tim Peters2006-04-111-7/+3
* Correct casts to char*.Martin v. Löwis2006-04-111-4/+4
* Remove "static forward" declaration. Move constructorsMartin v. Löwis2006-04-113-85/+79
* Get compiling againNeal Norwitz2006-04-111-1/+1
* More low-hanging fruit. Still need to re-arrange some code (or find a betterAnthony Baxter2006-04-115-79/+80
* More C++-compliance. Note especially listobject.c - to get C++ to accept theAnthony Baxter2006-04-118-136/+147
* 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