| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove "static forward" declaration. Move constructors | ![](//www.gravatar.com/avatar/3acb8bae5a2b5a28f6fe522a4ea9b873?s=13&d=retro) Martin v. Löwis | 2006-04-11 | 3 | -85/+79 |
* | Regenerate. | ![](//www.gravatar.com/avatar/3acb8bae5a2b5a28f6fe522a4ea9b873?s=13&d=retro) Martin v. Löwis | 2006-04-11 | 1 | -2/+0 |
* | As discussed on python-dev, really fix the PyMem_*/PyObject_* memory API | ![](//www.gravatar.com/avatar/e6facc7b962c35bc84dd526698529a6b?s=13&d=retro) Neal Norwitz | 2006-04-11 | 3 | -29/+29 |
* | Make _kind types global for C++ compilation. | ![](//www.gravatar.com/avatar/3acb8bae5a2b5a28f6fe522a4ea9b873?s=13&d=retro) Martin v. Löwis | 2006-04-11 | 3 | -20/+26 |
* | Get compiling again | ![](//www.gravatar.com/avatar/e6facc7b962c35bc84dd526698529a6b?s=13&d=retro) Neal Norwitz | 2006-04-11 | 1 | -1/+1 |
* | low-hanging fruit in Python/ - g++ still hates all the enum_kind declarations | ![](//www.gravatar.com/avatar/daa1cb7c6880afc209c99df9ef1b201e?s=13&d=retro) Anthony Baxter | 2006-04-11 | 4 | -22/+24 |
* | More low-hanging fruit. Still need to re-arrange some code (or find a better | ![](//www.gravatar.com/avatar/daa1cb7c6880afc209c99df9ef1b201e?s=13&d=retro) Anthony Baxter | 2006-04-11 | 5 | -79/+80 |
* | C++ already defines a perfectly good 'bool'. Use that. | ![](//www.gravatar.com/avatar/daa1cb7c6880afc209c99df9ef1b201e?s=13&d=retro) Anthony Baxter | 2006-04-11 | 1 | -0/+2 |
* | Adjust whitespace. | ![](//www.gravatar.com/avatar/e6facc7b962c35bc84dd526698529a6b?s=13&d=retro) Neal Norwitz | 2006-04-11 | 2 | -4/+4 |
* | Add whitespace after comma | ![](//www.gravatar.com/avatar/e6facc7b962c35bc84dd526698529a6b?s=13&d=retro) Neal Norwitz | 2006-04-11 | 1 | -1/+1 |
* | Correct test whether wchar_t is unsigned. Fixed crash | ![](//www.gravatar.com/avatar/3acb8bae5a2b5a28f6fe522a4ea9b873?s=13&d=retro) Martin v. Löwis | 2006-04-11 | 2 | -3/+5 |
* | Clear errno before calling opendir() and readdir(). | ![](//www.gravatar.com/avatar/3c46e59585526b90c088845402bc8407?s=13&d=retro) Georg Brandl | 2006-04-11 | 1 | -0/+1 |
* | More C++-compliance. Note especially listobject.c - to get C++ to accept the | ![](//www.gravatar.com/avatar/daa1cb7c6880afc209c99df9ef1b201e?s=13&d=retro) Anthony Baxter | 2006-04-11 | 8 | -136/+147 |
* | Bug #1467952: os.listdir() now correctly raises an error if readdir() | ![](//www.gravatar.com/avatar/3c46e59585526b90c088845402bc8407?s=13&d=retro) Georg Brandl | 2006-04-11 | 2 | -0/+9 |
* | Typo fix. | ![](//www.gravatar.com/avatar/3c46e59585526b90c088845402bc8407?s=13&d=retro) Georg Brandl | 2006-04-11 | 1 | -1/+1 |
* | Fix the code in Parser/ to also compile with C++. This was mostly casts for | ![](//www.gravatar.com/avatar/daa1cb7c6880afc209c99df9ef1b201e?s=13&d=retro) Anthony Baxter | 2006-04-11 | 7 | -36/+40 |
* | Try to repair what may be the last new test failure on the | ![](//www.gravatar.com/avatar/7c721b6de34c82ce39324dae5214dbf8?s=13&d=retro) Tim Peters | 2006-04-11 | 1 | -1/+15 |
* | subclasspropagation(): Squash two more bogus hash(x) == id(x) | ![](//www.gravatar.com/avatar/7c721b6de34c82ce39324dae5214dbf8?s=13&d=retro) Tim Peters | 2006-04-11 | 1 | -2/+2 |
* | Typo repair. | ![](//www.gravatar.com/avatar/7c721b6de34c82ce39324dae5214dbf8?s=13&d=retro) Tim Peters | 2006-04-11 | 1 | -2/+2 |
* | Whitespace normalization. | ![](//www.gravatar.com/avatar/7c721b6de34c82ce39324dae5214dbf8?s=13&d=retro) Tim Peters | 2006-04-11 | 2 | -4/+4 |
* | More words on patch #837242, since 4 or 5 tests started | ![](//www.gravatar.com/avatar/7c721b6de34c82ce39324dae5214dbf8?s=13&d=retro) Tim Peters | 2006-04-11 | 1 | -8/+19 |
* | Add notes to NEWS for other work today. | ![](//www.gravatar.com/avatar/eaa875d37f5e9ca7d663f1372efa1317?s=13&d=retro) Phillip J. Eby | 2006-04-11 | 1 | -0/+10 |
* | specials(): squash another incorrect hash(x) == id(x) | ![](//www.gravatar.com/avatar/7c721b6de34c82ce39324dae5214dbf8?s=13&d=retro) Tim Peters | 2006-04-11 | 1 | -1/+6 |
* | Forgot to mark up a PEP reference | ![](//www.gravatar.com/avatar/eaa875d37f5e9ca7d663f1372efa1317?s=13&d=retro) Phillip J. Eby | 2006-04-11 | 1 | -1/+1 |
* | Updated the warnings, linecache, inspect, traceback, site, and doctest modules | ![](//www.gravatar.com/avatar/eaa875d37f5e9ca7d663f1372efa1317?s=13&d=retro) Phillip J. Eby | 2006-04-11 | 10 | -30/+159 |
* | Huh. This belonged with the last checkin -- no idea why svn | ![](//www.gravatar.com/avatar/7c721b6de34c82ce39324dae5214dbf8?s=13&d=retro) Tim Peters | 2006-04-11 | 1 | -1/+0 |
* | Try to repair more new buildbot failures in "x86 OpenBSD trunk", due | ![](//www.gravatar.com/avatar/7c721b6de34c82ce39324dae5214dbf8?s=13&d=retro) Tim Peters | 2006-04-11 | 1 | -1/+1 |
* | Write part of ElementTree section | ![](//www.gravatar.com/avatar/e2cb0083d4d61cebb1325281f88f3843?s=13&d=retro) Andrew M. Kuchling | 2006-04-10 | 1 | -8/+75 |
* | Give SQLite examples | ![](//www.gravatar.com/avatar/e2cb0083d4d61cebb1325281f88f3843?s=13&d=retro) Andrew M. Kuchling | 2006-04-10 | 1 | -7/+102 |
* | Fix one of the tests that fails on the "x86 OpenBSD trunk" buildbot, | ![](//www.gravatar.com/avatar/7c721b6de34c82ce39324dae5214dbf8?s=13&d=retro) Tim Peters | 2006-04-10 | 1 | -1/+1 |
* | Fix one of the tests that fails on the "x86 OpenBSD trunk" buildbot, due | ![](//www.gravatar.com/avatar/7c721b6de34c82ce39324dae5214dbf8?s=13&d=retro) Tim Peters | 2006-04-10 | 1 | -1/+1 |
* | Whitespace normalization. | ![](//www.gravatar.com/avatar/7c721b6de34c82ce39324dae5214dbf8?s=13&d=retro) Tim Peters | 2006-04-10 | 2 | -21/+21 |
* | Patch #837242: id() for large ptr should return a long. | ![](//www.gravatar.com/avatar/3acb8bae5a2b5a28f6fe522a4ea9b873?s=13&d=retro) Martin v. Löwis | 2006-04-10 | 3 | -4/+18 |
* | DecimalContextTestCase: this permanently changed the | ![](//www.gravatar.com/avatar/7c721b6de34c82ce39324dae5214dbf8?s=13&d=retro) Tim Peters | 2006-04-10 | 1 | -9/+13 |
* | test_contextlib wasn't actually being run by regrtest.py. Or more precisely, | ![](//www.gravatar.com/avatar/eaa875d37f5e9ca7d663f1372efa1317?s=13&d=retro) Phillip J. Eby | 2006-04-10 | 1 | -1/+9 |
* | Minor clarity edit to contextlib per Guido's request. | ![](//www.gravatar.com/avatar/eaa875d37f5e9ca7d663f1372efa1317?s=13&d=retro) Phillip J. Eby | 2006-04-10 | 1 | -2/+2 |
* | SF Patch #1463867: Improved generator finalization to allow generators | ![](//www.gravatar.com/avatar/eaa875d37f5e9ca7d663f1372efa1317?s=13&d=retro) Phillip J. Eby | 2006-04-10 | 4 | -1/+29 |
* | Patch #1467770: Add Popen objects to _active only in __del__. | ![](//www.gravatar.com/avatar/3acb8bae5a2b5a28f6fe522a4ea9b873?s=13&d=retro) Martin v. Löwis | 2006-04-10 | 2 | -10/+29 |
* | Patch #1441452: Add more AST nodes. | ![](//www.gravatar.com/avatar/3acb8bae5a2b5a28f6fe522a4ea9b873?s=13&d=retro) Martin v. Löwis | 2006-04-10 | 1 | -15/+236 |
* | Patch #1429775: Link Python modules to libpython on linux if | ![](//www.gravatar.com/avatar/3acb8bae5a2b5a28f6fe522a4ea9b873?s=13&d=retro) Martin v. Löwis | 2006-04-10 | 3 | -4/+26 |
* | Patch #1462222: Fix Tix.Grid. Closes #1036406. | ![](//www.gravatar.com/avatar/3acb8bae5a2b5a28f6fe522a4ea9b873?s=13&d=retro) Martin v. Löwis | 2006-04-10 | 3 | -11/+117 |
* | Fix warning about ptsname not being a prototype on Solaris. Is this prototyp... | ![](//www.gravatar.com/avatar/e6facc7b962c35bc84dd526698529a6b?s=13&d=retro) Neal Norwitz | 2006-04-10 | 1 | -1/+1 |
* | Use PyObject_* allocator since FutureFeatures is small | ![](//www.gravatar.com/avatar/e6facc7b962c35bc84dd526698529a6b?s=13&d=retro) Neal Norwitz | 2006-04-10 | 2 | -3/+3 |
* | SF patch #1467512, fix double free with triple quoted string in standard build. | ![](//www.gravatar.com/avatar/e6facc7b962c35bc84dd526698529a6b?s=13&d=retro) Neal Norwitz | 2006-04-10 | 9 | -37/+45 |
* | Get rid of warnings about using chars as subscripts | ![](//www.gravatar.com/avatar/e6facc7b962c35bc84dd526698529a6b?s=13&d=retro) Neal Norwitz | 2006-04-10 | 2 | -3/+3 |
* | Fix some warnings on HP-UX when using cc/aCC | ![](//www.gravatar.com/avatar/e6facc7b962c35bc84dd526698529a6b?s=13&d=retro) Neal Norwitz | 2006-04-10 | 4 | -10/+11 |
* | I wonder if we can be too graceful? One oughta be enough. :-) | ![](//www.gravatar.com/avatar/e6facc7b962c35bc84dd526698529a6b?s=13&d=retro) Neal Norwitz | 2006-04-10 | 1 | -2/+1 |
* | Python on OS X 10.3 and above now uses dlopen() (via dynload_shlib.c) | ![](//www.gravatar.com/avatar/daa1cb7c6880afc209c99df9ef1b201e?s=13&d=retro) Anthony Baxter | 2006-04-09 | 7 | -8/+17 |
* | Patch #1466993: remove wrong comment in socket.py | ![](//www.gravatar.com/avatar/3c46e59585526b90c088845402bc8407?s=13&d=retro) Georg Brandl | 2006-04-09 | 1 | -8/+0 |
* | Fix tests so they pass in -R mode | ![](//www.gravatar.com/avatar/e6facc7b962c35bc84dd526698529a6b?s=13&d=retro) Neal Norwitz | 2006-04-09 | 3 | -7/+18 |