summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Fix more ssize_t issues.Martin v. Löwis2006-04-221-5/+5
* Py_ssize_t issue; repr()'ing a very large string would result in a teensyThomas Wouters2006-04-211-1/+1
* Fix variable/format-char discrepancy in new-style class __getitem__,Thomas Wouters2006-04-211-4/+4
* Make s.replace() work with explicit counts exceeding 2Gb.Thomas Wouters2006-04-191-2/+2
* Use Py_ssize_t to hold the 'width' argument to the ljust, rjust, center andThomas Wouters2006-04-191-8/+8
* Refactor: Move code that uses co_lnotab from ceval to codeobjectJeremy Hylton2006-04-181-0/+133
* Comment typo fixAndrew M. Kuchling2006-04-181-1/+1
* Remove types from type_list if they have no objectsMartin v. Löwis2006-04-181-6/+33
* C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a...Skip Montanaro2006-04-186-28/+29
* C++ compilation cleanup: Migrate declaration ofSkip Montanaro2006-04-181-7/+0
* No need to cast a Py_ssize_t, use %z in PyErr_FormatNeal Norwitz2006-04-171-2/+2
* Use %zd instead of %i as format character (in call to PyErr_Format) forThomas Wouters2006-04-161-1/+1
* gen_del(): Looks like much this was copy/pasted fromTim Peters2006-04-151-1/+1
* Remove now-unused variables from tp_traverse and tp_clear methods.Tim Peters2006-04-152-3/+0
* Use Py_VISIT in all tp_traverse methods, instead of traversing manually orThomas Wouters2006-04-1513-257/+68
* - Whitespace normalizationThomas Wouters2006-04-151-12/+14
* Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, forThomas Wouters2006-04-153-16/+4
* Clear dummy and emptyfrozenset, so that we don't haveMartin v. Löwis2006-04-151-2/+2
* Unlink the structseq type from the global list ofMartin v. Löwis2006-04-151-0/+8
* frame_clear(): Explain why it's important to make the frameTim Peters2006-04-151-18/+11
* frame_traverse(): Use the standard Py_VISIT macro.Tim Peters2006-04-151-16/+14
* Trimmed trailing whitespace.Tim Peters2006-04-151-13/+12
* Fix SF#1470508: crash in generator cycle finalization. There were twoPhillip J. Eby2006-04-152-19/+22
* 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