summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_optparse.py
diff options
context:
space:
mode:
authorAndrew M. Kuchling <amk@amk.ca>2004-08-31 11:38:12 (GMT)
committerAndrew M. Kuchling <amk@amk.ca>2004-08-31 11:38:12 (GMT)
commit33ad28b68dd6caadc1e6cb8f917665d6270e7b25 (patch)
treea190b6c2a5ba3cf6f8585fc00b1e0e0725c440c5 /Lib/test/test_optparse.py
parent3294e9d2e73b19a28a450ca7a7f47ece30272a46 (diff)
downloadcpython-33ad28b68dd6caadc1e6cb8f917665d6270e7b25.zip
cpython-33ad28b68dd6caadc1e6cb8f917665d6270e7b25.tar.gz
cpython-33ad28b68dd6caadc1e6cb8f917665d6270e7b25.tar.bz2
Use multi-line import
Diffstat (limited to 'Lib/test/test_optparse.py')
-rw-r--r--Lib/test/test_optparse.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/Lib/test/test_optparse.py b/Lib/test/test_optparse.py
index 254d1b4..172cca96 100644
--- a/Lib/test/test_optparse.py
+++ b/Lib/test/test_optparse.py
@@ -17,10 +17,10 @@ from cStringIO import StringIO
from pprint import pprint
from test import test_support
-from optparse import make_option, Option, IndentedHelpFormatter, \
- TitledHelpFormatter, OptionParser, OptionContainer, OptionGroup, \
- SUPPRESS_HELP, SUPPRESS_USAGE, OptionError, OptionConflictError, \
- BadOptionError, OptionValueError, _match_abbrev
+from optparse import (make_option, Option, IndentedHelpFormatter,
+ TitledHelpFormatter, OptionParser, OptionContainer, OptionGroup,
+ SUPPRESS_HELP, SUPPRESS_USAGE, OptionError, OptionConflictError,
+ BadOptionError, OptionValueError, _match_abbrev)
class BaseTest(unittest.TestCase):
def assertParseOK(self, args, expected_opts, expected_positional_args):