| Commit message (Expand) | Author | Age | Files | Lines |
* | Make s.replace() work with explicit counts exceeding 2Gb. | Thomas Wouters | 2006-04-19 | 1 | -2/+2 |
|
|
* | Use Py_ssize_t to hold the 'width' argument to the ljust, rjust, center and | Thomas Wouters | 2006-04-19 | 1 | -8/+8 |
|
|
* | Refactor: Move code that uses co_lnotab from ceval to codeobject | Jeremy Hylton | 2006-04-18 | 1 | -0/+133 |
|
|
* | Comment typo fix | Andrew M. Kuchling | 2006-04-18 | 1 | -1/+1 |
|
|
* | Remove types from type_list if they have no objects | Martin v. Löwis | 2006-04-18 | 1 | -6/+33 |
|
|
* | C++ compiler cleanup: bunch-o-casts, plus use of unsigned loop index var in a... | Skip Montanaro | 2006-04-18 | 6 | -28/+29 |
|
|
* | C++ compilation cleanup: Migrate declaration of | Skip Montanaro | 2006-04-18 | 1 | -7/+0 |
|
|
* | No need to cast a Py_ssize_t, use %z in PyErr_Format | Neal Norwitz | 2006-04-17 | 1 | -2/+2 |
|
|
* | Use %zd instead of %i as format character (in call to PyErr_Format) for | Thomas Wouters | 2006-04-16 | 1 | -1/+1 |
|
|
* | gen_del(): Looks like much this was copy/pasted from | Tim Peters | 2006-04-15 | 1 | -1/+1 |
|
|
* | Remove now-unused variables from tp_traverse and tp_clear methods. | Tim Peters | 2006-04-15 | 2 | -3/+0 |
|
|
* | Use Py_VISIT in all tp_traverse methods, instead of traversing manually or | Thomas Wouters | 2006-04-15 | 13 | -257/+68 |
|
|
* | - Whitespace normalization | Thomas Wouters | 2006-04-15 | 1 | -12/+14 |
|
|
* | Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, for | Thomas Wouters | 2006-04-15 | 3 | -16/+4 |
|
|
* | Clear dummy and emptyfrozenset, so that we don't have | Martin v. Löwis | 2006-04-15 | 1 | -2/+2 |
|
|
* | Unlink the structseq type from the global list of | Martin v. Löwis | 2006-04-15 | 1 | -0/+8 |
|
|
* | frame_clear(): Explain why it's important to make the frame | Tim Peters | 2006-04-15 | 1 | -18/+11 |
|
|
* | frame_traverse(): Use the standard Py_VISIT macro. | Tim Peters | 2006-04-15 | 1 | -16/+14 |
|
|
* | Trimmed trailing whitespace. | Tim Peters | 2006-04-15 | 1 | -13/+12 |
|
|
* | Fix SF#1470508: crash in generator cycle finalization. There were two | Phillip J. Eby | 2006-04-15 | 2 | -19/+22 |
|
|
* | Make Py_BuildValue, PyObject_CallFunction and | Martin v. Löwis | 2006-04-14 | 3 | -28/+92 |
|
|
* | Change more occurrences of maxsplit to Py_ssize_t. | Martin v. Löwis | 2006-04-13 | 1 | -4/+4 |
|
|
* | Change maxsplit types to Py_ssize_t. | Martin v. Löwis | 2006-04-13 | 1 | -4/+4 |
|
|
* | Replace INT_MAX with PY_SSIZE_T_MAX. | Martin v. Löwis | 2006-04-13 | 1 | -2/+2 |
|
|
* | Replace INT_MAX with PY_SSIZE_T_MAX where string length | Martin v. Löwis | 2006-04-13 | 1 | -4/+4 |
|
|
* | Remove another INT_MAX limitation | Martin v. Löwis | 2006-04-13 | 1 | -2/+1 |
|
|
* | Replace most INT_MAX with PY_SSIZE_T_MAX. | Martin v. Löwis | 2006-04-13 | 1 | -11/+11 |
|
|
* | Change more ints to Py_ssize_t. | Martin v. Löwis | 2006-04-13 | 1 | -40/+39 |
|
|
* | Revert 34153: Py_UNICODE should not be signed. | Martin v. Löwis | 2006-04-13 | 1 | -8/+3 |
|
|
* | spread the extern "C" { } magic pixie dust around. Python itself builds now | Anthony Baxter | 2006-04-13 | 3 | -0/+28 |
|
|
* | Add a cast to make code compile with a C++ compiler. | Anthony Baxter | 2006-04-13 | 1 | -1/+1 |
|
|
* | Don't set gi_frame to Py_None, use NULL instead, eliminating some insane | Phillip J. Eby | 2006-04-12 | 1 | -7/+7 |
|
|
* | Ignore the references to the dummy objects used as deleted keys | Armin Rigo | 2006-04-12 | 3 | -1/+34 |
|
|
* | wrap docstrings so they are less than 80 columns. add spaces after commas. | Neal Norwitz | 2006-04-12 | 1 | -3/+5 |
|
|
* | gen_throw(): The caller doesn't own PyArg_ParseTuple() | Tim Peters | 2006-04-12 | 1 | -3/+1 |
|
|
* | Fix int() and long() to repr() their argument when formatting the exception, | Thomas Wouters | 2006-04-11 | 2 | -6/+28 |
|
|
* | _Py_PrintReferenceAddresses,_Py_PrintReferences: | Tim Peters | 2006-04-11 | 1 | -7/+3 |
|
|
* | Correct casts to char*. | Martin v. Löwis | 2006-04-11 | 1 | -4/+4 |
|
|
* | Remove "static forward" declaration. Move constructors | Martin v. Löwis | 2006-04-11 | 3 | -85/+79 |
|
|
* | Get compiling again | Neal Norwitz | 2006-04-11 | 1 | -1/+1 |
|
|
* | More low-hanging fruit. Still need to re-arrange some code (or find a better | Anthony Baxter | 2006-04-11 | 5 | -79/+80 |
|
|
* | More C++-compliance. Note especially listobject.c - to get C++ to accept the | Anthony Baxter | 2006-04-11 | 8 | -136/+147 |
|
|
* | Patch #837242: id() for large ptr should return a long. | Martin v. Löwis | 2006-04-10 | 1 | -3/+9 |
|
|
* | SF Patch #1463867: Improved generator finalization to allow generators | Phillip J. Eby | 2006-04-10 | 1 | -0/+20 |
|
|
* | Remove dead code (reported by HP compiler). | Neal Norwitz | 2006-04-06 | 1 | -8/+5 |
|
|
* | Add PY_SSIZE_T_MIN, as suggested by Ralf W. Grosse-Kunstleve. | Martin v. Löwis | 2006-04-05 | 1 | -1/+1 |
|
|
* | Make xrange more Py_ssize_t aware, by assuming a Py_ssize_t is always at | Thomas Wouters | 2006-04-04 | 1 | -7/+0 |
|
|
* | Allow long integers in PySlice_GetIndices. | Martin v. Löwis | 2006-04-03 | 1 | -3/+3 |
|
|
* | Use Py_ssize_t in slices | Neal Norwitz | 2006-04-03 | 1 | -5/+5 |
|
|
* | Bug #1177964: make file iterator raise MemoryError on too big files | Georg Brandl | 2006-03-31 | 1 | -1/+2 |
|
|