commit | 3583cff5a9d55b9c1bc17b5d82670e5e6b0fc10d | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sun Apr 30 18:14:54 2006 +0000 |
committer | Georg Brandl <georg@python.org> | Sun Apr 30 18:14:54 2006 +0000 |
tree | 69e44c0965203d70cddbba81e87fe5efe14475a9 | |
parent | 208badda275a7aaf722a8db87297637e161fa7aa [diff] [blame] |
Patch #1472854: make the rlcompleter.Completer class usable on non- UNIX platforms.
diff --git a/Lib/test/test_sundry.py b/Lib/test/test_sundry.py index af13684..f19467c 100644 --- a/Lib/test/test_sundry.py +++ b/Lib/test/test_sundry.py
@@ -50,11 +50,7 @@ import py_compile import pydoc import rexec -try: - import rlcompleter # not available on Windows -except ImportError: - if verbose: - print "skipping rlcompleter" +import rlcompleter import sched import smtplib import sndhdr