summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* At the C level, tuple arguments are passed in directly to the exceptionBrett Cannon2006-06-211-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 Cannon2006-06-201-1/+1
|
* Raise TestSkipped when the test socket connection is refused.Brett Cannon2006-06-201-0/+7
|
* Remove Python 2.3 compatibility comment.Ka-Ping Yee2006-06-191-2/+1
|
* Preparing for 2.5b1.Anthony Baxter2006-06-192-1/+6
|
* TestHelp.make_parser(): This was making a permanent change toTim Peters2006-06-191-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 Heller2006-06-191-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 Peters2006-06-191-4/+3
| | | | as reported by Neal on python-dev.
* Patch #1506645: add Python wrappers for the curses functionsWalter Dörwald2006-06-191-0/+7
| | | | | is_term_resized, resize_term and resizeterm. This uses three separate configure checks (one for each function).
* Whitespace normalization.Tim Peters2006-06-192-9/+8
|
* Try to repair the failing test on the OpenBSD buildbot. Trial and error...Thomas Heller2006-06-191-1/+1
|
* Patch #1507676: improve exception messages in abstract.c, object.c and ↵Georg Brandl2006-06-181-1/+1
| | | | typeobject.c.
* Revert 47014 until it is more robustNeal Norwitz2006-06-184-32/+5
|
* The hppa ubuntu box sometimes hangs forever in these tests. My guessNeal Norwitz2006-06-184-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 moreNeal Norwitz2006-06-183-1/+29
| | | | | | | | 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.
* Fix typo in docstringNeal Norwitz2006-06-171-1/+1
|
* Patch #815924: Restore ability to pass type= and icon=Martin v. Löwis2006-06-171-3/+4
|
* Patch #812986: Update the canvas even if not tracing.Martin v. Löwis2006-06-171-0/+1
|
* Patch #1494750: Destroy master after deleting children.Martin v. Löwis2006-06-171-1/+1
|
* Patch #1096231: Add default argument to wm_iconbitmap.Martin v. Löwis2006-06-171-3/+12
|
* Patch #763580: Add name and value arguments toMartin v. Löwis2006-06-171-19/+63
| | | | Tkinter variable classes.
* fix change that broke the htmllib testsFred Drake2006-06-171-2/+2
|
* SF patch 1504676: Make sgmllib char and entity references pluggableFred Drake2006-06-162-37/+71
| | | | (implementation/tests contributed by Sam Ruby)
* Add missing period in comment.Neal Norwitz2006-06-161-1/+1
|
* Param name is dir, not directory. Update docstring. Backport candidateNeal Norwitz2006-06-161-1/+1
|
* Disable this test until we can determine what to do about itNeal Norwitz2006-06-161-1/+4
|
* Oops -- I introduced an off-by-6436159488 error.Tim Peters2006-06-151-1/+1
|
* Whitespace normalization.Tim Peters2006-06-152-15/+15
|
* Try to reduce the extreme peak memory and disk-space useTim Peters2006-06-151-11/+22
| | | | | | | of this test. It probably still requires more disk space than most buildbots have, and in any case is still so intrusive that if we don't find another way to test this I'm taking my buildbot offline permanently ;-)
* Print some more info to get an idea of how much longer the test will lastNeal Norwitz2006-06-151-4/+6
|
* Steal the trick from test_compiler to print out a slow msg.Neal Norwitz2006-06-151-0/+18
| | | | | | This will hopefully get the buildbots to pass. Not sure this test will be feasible or even work. But everything is red now, so it can't get much worse.
* - bsddb: multithreaded DB access using the simple bsddb module interfaceGregory P. Smith2006-06-152-31/+39
| | | | | | now works reliably. It has been updated to use automatic BerkeleyDB deadlock detection and the bsddb.dbutils.DeadlockWrap wrapper to retry database calls that would previously deadlock. [SF python bug #775414]
* Re-revert this change. Install the version check and don't run the testNeal Norwitz2006-06-151-0/+2
| | | | | | | until Gerhard has time to fully debug the issue. This affects versions before 3.2.1 (possibly only versions earlier than 3.1.3). Based on discussion on python-checkins.
* Patch #1446489 (zipfile: support for ZIP64)Ronald Oussoren2006-06-153-55/+648
|
* Make import/lookup of mbcs fail on non-Windows systems.Martin v. Löwis2006-06-151-4/+8
|
* Try to narrow window of failure on slow/busy boxes (ppc64 buildbot)Neal Norwitz2006-06-151-4/+8
|
* Speculative checkin (requires approval of Gerhard Haering)Neal Norwitz2006-06-152-12/+0
| | | | | | | | | This backs out the test changes in 46962 which prevented crashes by not running the tests via a version check. All the version checks added in that rev were removed from the tests. Code was added to the error handler in connection.c that seems to work with older versions of sqlite including 3.1.3.
* Whitespace normalization.Tim Peters2006-06-141-1/+1
|
* - Added version checks in C code to make sure we don't trigger bugs in olderGerhard Häring2006-06-142-0/+12
| | | | | | | | | | | SQLite versions. - Added version checks in test suite so that we don't execute tests that we know will fail with older (buggy) SQLite versions. Now, all tests should run against all SQLite versions from 3.0.8 until 3.3.6 (latest one now). The sqlite3 module can be built against all these SQLite versions and the sqlite3 module does its best to not trigger bugs in SQLite, but using SQLite 3.3.3 or later is recommended.
* Add an __all__ list, since this module does 'from ctypes import *'.Thomas Heller2006-06-141-0/+16
|
* Bug #1117556: SimpleHTTPServer now tries to find and use the system'sGeorg Brandl2006-06-141-1/+3
| | | | mime.types file for determining MIME types.
* Bug #1202018: add some common mime.types locations.Georg Brandl2006-06-141-0/+4
|
* Fix docstring.Thomas Heller2006-06-141-1/+1
|
* Bug #1339007: Shelf objects now don't raise an exception in theirGeorg Brandl2006-06-141-0/+3
| | | | __del__ method when initialization failed.
* Patch #1455898: Incremental mode for "mbcs" codec.Martin v. Löwis2006-06-141-3/+4
|
* explain an XXX in more detailFred Drake2006-06-141-0/+3
|
* add tests for two cases that are handled correctly in the current code,Fred Drake2006-06-141-2/+7
| | | | but that SF patch 1504676 as written mis-handles
* - make some disabled tests run what they intend when enabledFred Drake2006-06-141-13/+13
| | | | - remove some over-zealous triple-quoting
* Whitespace normalization.Tim Peters2006-06-141-1/+1
|
* Repaired typo in new comment.Tim Peters2006-06-141-1/+1
|