Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Copy the wsgiref package during make install. | Neal Norwitz | 2006-06-22 | 2 | -1/+3 |
| | |||||
* | Fix for an obscure bug introduced by revs 46806 and 46808, with a test. | Armin Rigo | 2006-06-21 | 3 | -11/+22 |
| | | | | | | | | | | | | | | The problem of checking too eagerly for recursive calls is the following: if a RuntimeError is caused by recursion, and if code needs to normalize it immediately (as in the 2nd test), then PyErr_NormalizeException() needs a call to the RuntimeError class to instantiate it, and this hits the recursion limit again... causing PyErr_NormalizeException() to never finish. Moved this particular recursion check to slot_tp_call(), which is not involved in instantiating built-in exceptions. Backport candidate. | ||||
* | Removed call to enable_callback_tracebacks that slipped in by accident. | Gerhard Häring | 2006-06-21 | 1 | -1/+0 |
| | |||||
* | Patch #1509001: expected skips for netbsd3. | Georg Brandl | 2006-06-21 | 1 | -0/+31 |
| | |||||
* | Make test_fcntl aware of netbsd3. | Georg Brandl | 2006-06-21 | 1 | -3/+4 |
| | |||||
* | fix [ 1509132 ] compiler module builds incorrect AST for TryExceptFinally | Georg Brandl | 2006-06-21 | 2 | -19/+41 |
| | |||||
* | Bump version | Andrew M. Kuchling | 2006-06-21 | 1 | -1/+1 |
| | |||||
* | Note some of Barry's work | Andrew M. Kuchling | 2006-06-21 | 1 | -1/+7 |
| | |||||
* | Link to LibRef module documentation | Andrew M. Kuchling | 2006-06-21 | 1 | -1/+13 |
| | |||||
* | At the C level, tuple arguments are passed in directly to the exception | Brett Cannon | 2006-06-21 | 1 | -4/+4 |
| | | | | | | constructor, meaning it is treated as *args, not as a single argument. This means using the 'message' attribute won't work (until Py3K comes around), and so one must grab from 'arg' to get the error number. | ||||
* | Fix typo of exception name. | Brett Cannon | 2006-06-20 | 1 | -1/+1 |
| | |||||
* | Raise TestSkipped when the test socket connection is refused. | Brett Cannon | 2006-06-20 | 1 | -0/+7 |
| | |||||
* | [Bug #1504456] Mention xml -> xmlcore change | Andrew M. Kuchling | 2006-06-20 | 1 | -0/+9 |
| | |||||
* | Minor edits and rearrangements; markup fix | Andrew M. Kuchling | 2006-06-20 | 1 | -18/+14 |
| | |||||
* | Add introductory paragraphs summarizing the release; minor edits | Andrew M. Kuchling | 2006-06-20 | 1 | -11/+34 |
| | |||||
* | Terminology and typography fixes | Andrew M. Kuchling | 2006-06-20 | 3 | -5/+5 |
| | |||||
* | Add four library items | Andrew M. Kuchling | 2006-06-20 | 1 | -0/+23 |
| | |||||
* | Uncomment wsgiref section | Andrew M. Kuchling | 2006-06-20 | 1 | -8/+6 |
| | |||||
* | Tagging for release of Python 2.5b1 | Anthony Baxter | 2006-06-20 | 1 | -0/+1 |
| | |||||
* | [ 1295808 ] expat symbols should be namespaced in pyexpatv2.5b1 | Trent Mick | 2006-06-19 | 2 | -0/+128 |
| | | | | (http://python.org/sf/1295808) | ||||
* | Upgrade pyexpat to expat 2.0.0 (http://python.org/sf/1462338). | Trent Mick | 2006-06-19 | 12 | -310/+365 |
| | |||||
* | Remove Python 2.3 compatibility comment. | Ka-Ping Yee | 2006-06-19 | 1 | -2/+1 |
| | |||||
* | Fixed a memory leak that was introduced with incorrect usage of the Python weak | Gerhard Häring | 2006-06-19 | 2 | -2/+2 |
| | | | | | | reference API in pysqlite 2.2.1. Bumbed pysqlite version number to upcoming pysqlite 2.3.1 release. | ||||
* | remove non-working document formats from edist | Fred Drake | 2006-06-19 | 1 | -1/+1 |
| | |||||
* | Preparing for 2.5b1. | Anthony Baxter | 2006-06-19 | 5 | -6/+11 |
| | |||||
* | TestHelp.make_parser(): This was making a permanent change to | Tim Peters | 2006-06-19 | 1 | -1/+12 |
| | | | | | | | | | | | | | | os.environ (setting envar COLUMNS), which at least caused test_float_default() to fail if the tests were run more than once. This repairs the test_optparse -R failures Neal reported on python-dev. It also explains some seemingly bizarre test_optparse failures we saw a couple weeks ago on the buildbots, when test_optparse failed due to test_file failing to clean up after itself, and then test_optparse failed in an entirely different way when regrtest's -w option ran test_optparse a second time. It's now obvious that make_parser() permanently changing os.environ was responsible for the second half of that. | ||||
* | Next try to fix the OpenBSD buildbot tests: | Thomas Heller | 2006-06-19 | 1 | -9/+1 |
| | | | | | Use ctypes.util.find_library to locate the C runtime library on platforms where is returns useful results. | ||||
* | Repair KeyError when running test_threaded_import under -R, | Tim Peters | 2006-06-19 | 1 | -4/+3 |
| | | | | as reported by Neal on python-dev. | ||||
* | Make check order match in configure and configure.in. | Walter Dörwald | 2006-06-19 | 1 | -6/+6 |
| | |||||
* | Patch #1506645: add Python wrappers for the curses functions | Walter Dörwald | 2006-06-19 | 6 | -5/+277 |
| | | | | | is_term_resized, resize_term and resizeterm. This uses three separate configure checks (one for each function). | ||||
* | Whitespace normalization. | Tim Peters | 2006-06-19 | 2 | -9/+8 |
| | |||||
* | Try to repair the failing test on the OpenBSD buildbot. Trial and error... | Thomas Heller | 2006-06-19 | 1 | -1/+1 |
| | |||||
* | Add news entry about error msg improvement. | Georg Brandl | 2006-06-19 | 1 | -0/+4 |
| | |||||
* | Use Py_ssize_t | Neal Norwitz | 2006-06-19 | 2 | -25/+25 |
| | |||||
* | Patch #1507676: improve exception messages in abstract.c, object.c and ↵ | Georg Brandl | 2006-06-18 | 4 | -65/+82 |
| | | | | typeobject.c. | ||||
* | Fix typos. | Thomas Heller | 2006-06-18 | 1 | -28/+27 |
| | | | | | | | | Fix doctest example. Mention in the tutorial that 'errcheck' is explained in the ref manual. Use better wording in some places. Remoce code examples that shouldn't be in the tutorial. Remove some XXX notices. | ||||
* | Revert 47014 until it is more robust | Neal Norwitz | 2006-06-18 | 4 | -32/+5 |
| | |||||
* | The hppa ubuntu box sometimes hangs forever in these tests. My guess | Neal Norwitz | 2006-06-18 | 4 | -5/+32 |
| | | | | | | | | | | is that the wait is failing for some reason. Use WNOHANG, so we won't wait until the buildbot kills the test suite. I haven't been able to reproduce the failure, so I'm not sure if this will help or not. Hopefully, this change will cause the test to fail, rather than hang. That will be better since we will get the rest of the test results. It may also help us debug the real problem. | ||||
* | Prevent spurious leaks when running regrtest.py -R. There may be more | Neal Norwitz | 2006-06-18 | 4 | -2/+30 |
| | | | | | | | | issues that crop up from time to time, but this change seems to have been pretty stable (no spurious warnings) for about a week. Other modules which use threads may require similar use of threading_setup/threading_cleanup from test_support. | ||||
* | remove unnecessary markup | Fred Drake | 2006-06-18 | 1 | -1/+1 |
| | |||||
* | Fix memory leak reported by valgrind while running test_subprocess | Neal Norwitz | 2006-06-17 | 1 | -0/+2 |
| | |||||
* | Fix typo in docstring | Neal Norwitz | 2006-06-17 | 1 | -1/+1 |
| | |||||
* | Patch #815924: Restore ability to pass type= and icon= | Martin v. Löwis | 2006-06-17 | 2 | -3/+7 |
| | |||||
* | Patch #812986: Update the canvas even if not tracing. | Martin v. Löwis | 2006-06-17 | 2 | -0/+3 |
| | |||||
* | Update url. | George Yoshida | 2006-06-17 | 2 | -11/+11 |
| | | | | Old url returned status code:301 Moved permanently. | ||||
* | markup fix | George Yoshida | 2006-06-17 | 1 | -1/+1 |
| | |||||
* | Patch #1494750: Destroy master after deleting children. | Martin v. Löwis | 2006-06-17 | 2 | -1/+4 |
| | |||||
* | Patch #1096231: Add default argument to wm_iconbitmap. | Martin v. Löwis | 2006-06-17 | 3 | -3/+15 |
| | |||||
* | Patch #763580: Add name and value arguments to | Martin v. Löwis | 2006-06-17 | 2 | -19/+66 |
| | | | | Tkinter variable classes. | ||||
* | fix change that broke the htmllib tests | Fred Drake | 2006-06-17 | 1 | -2/+2 |
| |