| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| * | Concatenation on a long string breaks (SF #1526585). | Armin Rigo | 2006-08-09 | 4 | -5/+78 |
|
|
| * | It's unlikely that future versions will require _POSIX_C_SOURCE | Ronald Oussoren | 2006-08-09 | 2 | -2/+2 |
|
|
| * | Fix and test for an infinite C recursion. | Armin Rigo | 2006-08-09 | 2 | -1/+5 |
|
|
| * | Reindent code | Andrew M. Kuchling | 2006-08-09 | 1 | -31/+33 |
|
|
| * | Add missing 'self' parameters | Andrew M. Kuchling | 2006-08-09 | 1 | -3/+6 |
|
|
| * | [Patch #1534027] Add notes on locale module changes | Andrew M. Kuchling | 2006-08-09 | 1 | -5/+34 |
|
|
| * | [Bug #1536021] Mention __hash__ change | Andrew M. Kuchling | 2006-08-09 | 1 | -2/+10 |
|
|
| * | __hash__ may now return long int; the final hash | Martin v. Löwis | 2006-08-09 | 5 | -6/+24 |
|
|
| * | Introduce an upper bound on tuple nesting depth in | Georg Brandl | 2006-08-09 | 1 | -0/+3 |
|
|
| * | Whitespace normalization. | Tim Peters | 2006-08-09 | 1 | -1/+1 |
|
|
| * | ``str`` is now the same object as ``types.StringType``. | Georg Brandl | 2006-08-08 | 1 | -17/+24 |
|
|
| * | Bug #1536660: separate two words. | Georg Brandl | 2006-08-08 | 1 | -1/+1 |
|
|
| * | Bug #1536828: typo: TypeType should have been StringType. | Georg Brandl | 2006-08-08 | 1 | -1/+1 |
|
|
| * | Bump version number | Andrew M. Kuchling | 2006-08-08 | 1 | -1/+1 |
|
|
| * | 'Other changes' section now has only one item; move the item elsewhere and re... | Andrew M. Kuchling | 2006-08-08 | 1 | -22/+13 |
|
|
| * | Move obmalloc item into C API section | Andrew M. Kuchling | 2006-08-08 | 1 | -29/+29 |
|
|
| * | Reword paragraph to clarify | Andrew M. Kuchling | 2006-08-08 | 1 | -4/+5 |
|
|
| * | Remove accidently committed, duplicated test. | Thomas Heller | 2006-08-08 | 1 | -2/+0 |
|
|
| * | memcmp() can return values other than -1, 0, and +1 but tp_compare | Thomas Heller | 2006-08-08 | 3 | -1/+6 |
|
|
| * | Remove "non-mapping" and "non-sequence" from TypeErrors raised by | Georg Brandl | 2006-08-08 | 1 | -2/+2 |
|
|
| * | webbrowser: Silence stderr output if no gconftool or gnome browser found | Georg Brandl | 2006-08-08 | 1 | -2/+2 |
|
|
| * | [Patch #1464056] Ensure that we use the panelw library when linking with ncur... | Andrew M. Kuchling | 2006-08-06 | 1 | -2/+6 |
|
|
| * | test_threading now skips testing alternate thread stack sizes on | Andrew MacIntyre | 2006-08-06 | 2 | -2/+15 |
|
|
| * | Don't produce output in test_builtin. | Georg Brandl | 2006-08-06 | 1 | -2/+2 |
|
|
| * | Bug #1535165: fixed a segfault in input() and raw_input() when | Georg Brandl | 2006-08-06 | 3 | -1/+12 |
|
|
| * | Bug #1535081: A leading underscore has been added to the names of | Georg Brandl | 2006-08-06 | 1 | -5/+8 |
|
|
| * | Bug #1535182: really test the xreadlines() method of bz2 objects. | Georg Brandl | 2006-08-06 | 2 | -1/+3 |
|
|
| * | Patch #1534922: correct and enhance unittest docs. | Georg Brandl | 2006-08-05 | 2 | -142/+181 |
|
|
| * | Fix #1530559, struct.pack raises TypeError where it used to convert. | Bob Ippolito | 2006-08-04 | 3 | -26/+133 |
|
|
| * | Whitespace normalization. | Tim Peters | 2006-08-04 | 1 | -1/+1 |
|
|
| * | Fix mangled sentence | Andrew M. Kuchling | 2006-08-04 | 1 | -1/+1 |
|
|
| * | Typo fixes | Andrew M. Kuchling | 2006-08-04 | 2 | -2/+2 |
|
|
| * | Fix #1534738: win32 debug version of _msi must be _msi_d.pyd, not _msi.pyd. | Thomas Heller | 2006-08-04 | 2 | -2/+4 |
|
|
| * | Fix #1530448 - fix ctypes build failure on solaris 10. | Thomas Heller | 2006-08-04 | 2 | -0/+7 |
|
|
| * | On Windows, make PyErr_Warn an exported function again. | Thomas Heller | 2006-08-04 | 2 | -1/+4 |
|
|
| * | Better fix for bug #1531405, not executing str(value) twice. | Georg Brandl | 2006-08-04 | 1 | -7/+3 |
|
|
| * | Change fix for segfaulting property(), add a NEWS entry and a test. | Georg Brandl | 2006-08-04 | 4 | -10/+33 |
|
|
| * | Fix the 'compiler' package to generate correct code for MAKE_CLOSURE. | Neil Schemenauer | 2006-08-04 | 3 | -26/+29 |
|
|
| * | Fix bug caused by first decrefing, then increfing. | Georg Brandl | 2006-08-04 | 1 | -5/+4 |
|
|
| * | fix typos | Gregory P. Smith | 2006-08-04 | 1 | -4/+4 |
|
|
| * | SF patch #1534048 (bug #1531003): fix typo in error message | Fred Drake | 2006-08-04 | 1 | -1/+1 |
|
|
| * | There were really two issues | Neal Norwitz | 2006-08-04 | 1 | -1/+2 |
|
|
| * | Bug #1333982: string/number constants were inappropriately stored | Neal Norwitz | 2006-08-04 | 3 | -2/+25 |
|
|
| * | Bug #1191458: tracing over for loops now produces a line event | Neal Norwitz | 2006-08-04 | 4 | -11/+56 |
|
|
| * | Bug #1531405, format_exception no longer raises an exception if | Neal Norwitz | 2006-08-04 | 3 | -5/+51 |
|
|
| * | Tagging for release of Python 2.5b3 | Anthony Baxter | 2006-08-03 | 1 | -0/+1 |
|
|
| * | Add missing svn:eol-style property to text files.v2.5b3 | Tim Peters | 2006-08-02 | 0 | -0/+0 |
|
|
| * | Correction of patch #1455898: In the mbcs decoder, set final=False | Martin v. Löwis | 2006-08-02 | 3 | -20/+15 |
|
|
| * | Fix a mistake. | Thomas Heller | 2006-08-02 | 1 | -3/+3 |
|
|
| * | A few nore words about what ctypes does. | Thomas Heller | 2006-08-02 | 1 | -7/+28 |
|
|