summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* reload(exceptions) should not raise an ImportError, but should actBarry Warsaw2001-08-131-0/+8
| | | | just like reload(sys). Test that this is so. Closes SF bug #422004.
* Repair Unix-specific assumptions that caused this to fail on Windows.Tim Peters2001-08-131-20/+18
|
* found_terminator(): Add a debug print showing the data.Barry Warsaw2001-08-131-1/+2
|
* Nick Mathewson: test suite for the class browser support module.Fred Drake2001-08-131-0/+158
|
* Nick Mathewson: Make sure the recursion is handled properly.Fred Drake2001-08-131-4/+4
| | | | This is part of SF patch #440292.
* Remove redundant import (PyChecker).Guido van Rossum2001-08-131-2/+4
| | | | Update greeting message to avoid the long copyright notice.
* Remove unused variable 'imports' from readmodule_ex().Guido van Rossum2001-08-131-1/+0
|
* Remove redundant 'import string' (PyChecker).Guido van Rossum2001-08-131-1/+0
|
* Remove redundant imports (PyChecker).Guido van Rossum2001-08-131-2/+0
|
* Remove redundant 'import sys' (PyChecker).Guido van Rossum2001-08-131-1/+1
|
* Remove two redundant statements (PyChecker).Guido van Rossum2001-08-131-2/+0
|
* Remove redundant assignment l = [] from poll3() -- copy-and-pasteGuido van Rossum2001-08-131-1/+0
| | | | error.
* Commenting out the getfillable() method -- it's broken, and nobodyGuido van Rossum2001-08-131-2/+3
| | | | remembers what it is supposed to do. :-(
* Remove redefinition of has_option() methodAndrew M. Kuchling2001-08-131-7/+0
|
* Remove empty __init__ (PyChecker)Andrew M. Kuchling2001-08-131-3/+0
|
* Remove redefinition of writelines() methodAndrew M. Kuchling2001-08-131-5/+0
| | | | Remove unused variable and import
* Remove unused variable (PyChecker)Andrew M. Kuchling2001-08-133-3/+0
|
* Remove some dead code (PyChecker)Andrew M. Kuchling2001-08-131-3/+1
|
* Add forgotten import (PyChecker)Andrew M. Kuchling2001-08-131-1/+1
|
* Remove unused import (PyChecker)Andrew M. Kuchling2001-08-132-2/+0
|
* Remove redundant importAndrew M. Kuchling2001-08-131-1/+1
|
* Capture exception message (PyChecker)Andrew M. Kuchling2001-08-131-1/+1
|
* Remove unused imports (PyChecker)Andrew M. Kuchling2001-08-131-4/+0
|
* Remove unused variableAndrew M. Kuchling2001-08-131-1/+1
|
* Fix malformed line (PyChecker)Andrew M. Kuchling2001-08-131-1/+1
|
* Fix two bugs discovered by PyChecker. (I cannot test these, but I'mGuido van Rossum2001-08-131-2/+2
| | | | | confident that the old code was utterly broken -- the worse that can happen is that the new code is still broken.)
* Fix for NameError caught by PyChecker.Andrew M. Kuchling2001-08-131-2/+2
| | | | (This command seems to be essentially untested; should fix that...)
* Fix typo (PyChecker)Andrew M. Kuchling2001-08-131-1/+1
|
* Catch curses.error instead of a non-existent global (PyChecker)Andrew M. Kuchling2001-08-131-2/+2
| | | | Edit comment
* Remove redundant importAndrew M. Kuchling2001-08-131-1/+0
|
* further work on font config and general feel improvementsSteven M. Gava2001-08-131-21/+24
|
* SF patch #445412 extract ndiff functionality to difflib, fromTim Peters2001-08-121-267/+575
| | | | David Goodger.
* Modify _Set to support iteration.Jeremy Hylton2001-08-121-0/+3
| | | | | Otherwise printlist(surprise) will fail with a TypeError, because map is called with an argument that doesn't support iteration.
* - Expand test for dynamic objects.Guido van Rossum2001-08-121-21/+33
| | | | | | - Remove various 'global' directives and move some global definitions inside the test functions that use them -- we have nested scopes so the old hacks using globals are no longer needed.
* Make the output of tests skipped readable (i.e., deliberately break itTim Peters2001-08-121-6/+30
| | | | into indented lines each of which probably fits on a typical screen line).
* dynamics(): add tests for dynamic *instances* (which are currentlyGuido van Rossum2001-08-121-1/+20
| | | | broken). Also fix an invalid reference to C (should be S).
* Test the unary operator changes to the compilerJeremy Hylton2001-08-121-0/+43
|
* Add the list of expected skips for Linux 2.x. Restructured the code aGuido van Rossum2001-08-121-28/+51
| | | | | little bit using a dictionary to avoid more code duplication as more platforms are supported.
* Move line; reported on python-dev by Mark Favas (thanks!).Tim Peters2001-08-121-1/+1
|
* Teach regrtest which tests we *expect* to skip on Win32. Please teach itTim Peters2001-08-121-0/+85
| | | | about your platform too.
* removed some cruftSteven M. Gava2001-08-121-7/+0
|
* _Condition.wait(): never sleep longer than the timeout time remaining,Tim Peters2001-08-121-4/+11
| | | | | and even if we have a long time left to wait, try the lock at least 20 times/second.
* The test assumed that the local pathname convention for "foo" would sort ↵Jack Jansen2001-08-111-2/+4
| | | | before "foo/bar", which is not true on the mac (where they are "foo" and ":foo:bar", respectively; ":foo" would be fine too, but "foo" is the preferred spelling). Fixed by sorting the output.
* Replace all type comparisons with isinstance() callsJeremy Hylton2001-08-111-9/+9
|
* repair posix fonts fixSteven M. Gava2001-08-112-38/+66
|
* Only catch the errors that can actually occur, as reported in bug #411881.Martin v. Löwis2001-08-112-5/+9
|
* support for help menu changesSteven M. Gava2001-08-111-0/+5
|
* some re-designSteven M. Gava2001-08-111-18/+27
|
* supports about changesSteven M. Gava2001-08-111-0/+50
|
* adjust help menu bindingsSteven M. Gava2001-08-111-0/+1
|