| Commit message (Expand) | Author | Age | Files | Lines |
* | Move constructors, add some casts to make C++ compiler happy. Still a problem | Anthony Baxter | 2006-04-12 | 1 | -202/+201 |
|
|
* | remove forward declarations, move constructor functions. makes code C++ safe. | Anthony Baxter | 2006-04-12 | 1 | -43/+42 |
|
|
* | Make symtable.c safe for C++ compilers. Changed macros in the same way as | Anthony Baxter | 2006-04-12 | 1 | -11/+13 |
|
|
* | per Jeremy's email, remove the _WITH_CAST versions of macros. g++ | Anthony Baxter | 2006-04-12 | 1 | -46/+24 |
|
|
* | Part two of the fix for SF bug #1466641: Regenerate graminit.c and add test | Thomas Wouters | 2006-04-12 | 2 | -2/+7 |
|
|
* | Fix SF bug #1466641: multiple adjacent 'if's in listcomps and genexps, as in | Thomas Wouters | 2006-04-12 | 1 | -2/+2 |
|
|
* | Fix int() and long() to repr() their argument when formatting the exception, | Thomas Wouters | 2006-04-11 | 2 | -6/+28 |
|
|
* | StreamHandler now checks explicitly for None before using sys.stderr as the s... | Vinay Sajip | 2006-04-11 | 1 | -1/+1 |
|
|
* | _Py_PrintReferenceAddresses,_Py_PrintReferences: | Tim Peters | 2006-04-11 | 1 | -7/+3 |
|
|
* | Complete the ElementTree section | Andrew M. Kuchling | 2006-04-11 | 1 | -5/+32 |
|
|
* | Some more changes to make code compile under a C++ compiler. | Anthony Baxter | 2006-04-11 | 5 | -10/+11 |
|
|
* | more low-hanging fruit to make code compile under a C++ compiler. Not | Anthony Baxter | 2006-04-11 | 5 | -70/+102 |
|
|
* | Patch #1464444: Add --with-system-ffi. | Martin v. Löwis | 2006-04-11 | 4 | -38/+98 |
|
|
* | Convert 0 to their respective enum types. Convert | Martin v. Löwis | 2006-04-11 | 1 | -11/+11 |
|
|
* | 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 |
|
|
* | Regenerate. | Martin v. Löwis | 2006-04-11 | 1 | -2/+0 |
|
|
* | As discussed on python-dev, really fix the PyMem_*/PyObject_* memory API | Neal Norwitz | 2006-04-11 | 3 | -29/+29 |
|
|
* | Make _kind types global for C++ compilation. | Martin v. Löwis | 2006-04-11 | 3 | -20/+26 |
|
|
* | Get compiling again | Neal Norwitz | 2006-04-11 | 1 | -1/+1 |
|
|
* | low-hanging fruit in Python/ - g++ still hates all the enum_kind declarations | Anthony Baxter | 2006-04-11 | 4 | -22/+24 |
|
|
* | More low-hanging fruit. Still need to re-arrange some code (or find a better | Anthony Baxter | 2006-04-11 | 5 | -79/+80 |
|
|
* | C++ already defines a perfectly good 'bool'. Use that. | Anthony Baxter | 2006-04-11 | 1 | -0/+2 |
|
|
* | Adjust whitespace. | Neal Norwitz | 2006-04-11 | 2 | -4/+4 |
|
|
* | Add whitespace after comma | Neal Norwitz | 2006-04-11 | 1 | -1/+1 |
|
|
* | Correct test whether wchar_t is unsigned. Fixed crash | Martin v. Löwis | 2006-04-11 | 2 | -3/+5 |
|
|
* | Clear errno before calling opendir() and readdir(). | Georg Brandl | 2006-04-11 | 1 | -0/+1 |
|
|
* | More C++-compliance. Note especially listobject.c - to get C++ to accept the | Anthony Baxter | 2006-04-11 | 8 | -136/+147 |
|
|
* | Bug #1467952: os.listdir() now correctly raises an error if readdir() | Georg Brandl | 2006-04-11 | 2 | -0/+9 |
|
|
* | Typo fix. | Georg Brandl | 2006-04-11 | 1 | -1/+1 |
|
|
* | Fix the code in Parser/ to also compile with C++. This was mostly casts for | Anthony Baxter | 2006-04-11 | 7 | -36/+40 |
|
|
* | Try to repair what may be the last new test failure on the | Tim Peters | 2006-04-11 | 1 | -1/+15 |
|
|
* | subclasspropagation(): Squash two more bogus hash(x) == id(x) | Tim Peters | 2006-04-11 | 1 | -2/+2 |
|
|
* | Typo repair. | Tim Peters | 2006-04-11 | 1 | -2/+2 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-04-11 | 2 | -4/+4 |
|
|
* | More words on patch #837242, since 4 or 5 tests started | Tim Peters | 2006-04-11 | 1 | -8/+19 |
|
|
* | Add notes to NEWS for other work today. | Phillip J. Eby | 2006-04-11 | 1 | -0/+10 |
|
|
* | specials(): squash another incorrect hash(x) == id(x) | Tim Peters | 2006-04-11 | 1 | -1/+6 |
|
|
* | Forgot to mark up a PEP reference | Phillip J. Eby | 2006-04-11 | 1 | -1/+1 |
|
|
* | Updated the warnings, linecache, inspect, traceback, site, and doctest modules | Phillip J. Eby | 2006-04-11 | 10 | -30/+159 |
|
|
* | Huh. This belonged with the last checkin -- no idea why svn | Tim Peters | 2006-04-11 | 1 | -1/+0 |
|
|
* | Try to repair more new buildbot failures in "x86 OpenBSD trunk", due | Tim Peters | 2006-04-11 | 1 | -1/+1 |
|
|
* | Write part of ElementTree section | Andrew M. Kuchling | 2006-04-10 | 1 | -8/+75 |
|
|
* | Give SQLite examples | Andrew M. Kuchling | 2006-04-10 | 1 | -7/+102 |
|
|
* | Fix one of the tests that fails on the "x86 OpenBSD trunk" buildbot, | Tim Peters | 2006-04-10 | 1 | -1/+1 |
|
|
* | Fix one of the tests that fails on the "x86 OpenBSD trunk" buildbot, due | Tim Peters | 2006-04-10 | 1 | -1/+1 |
|
|
* | Whitespace normalization. | Tim Peters | 2006-04-10 | 2 | -21/+21 |
|
|
* | Patch #837242: id() for large ptr should return a long. | Martin v. Löwis | 2006-04-10 | 3 | -4/+18 |
|
|
* | DecimalContextTestCase: this permanently changed the | Tim Peters | 2006-04-10 | 1 | -9/+13 |
|
|
* | test_contextlib wasn't actually being run by regrtest.py. Or more precisely, | Phillip J. Eby | 2006-04-10 | 1 | -1/+9 |
|
|