Changeset 391 for python/trunk/Lib/test/test_sundry.py
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Lib/test/test_sundry.py
r2 r391 4 4 import sys 5 5 import unittest 6 import warnings7 6 8 7 9 8 class TestUntestedModules(unittest.TestCase): 10 9 def test_at_least_import_untested_modules(self): 11 with warnings.catch_warnings():10 with test_support.check_warnings(quiet=True): 12 11 import CGIHTTPServer 13 12 import audiodev … … 24 23 if sys.platform.startswith('win'): 25 24 import distutils.msvccompiler 26 import distutils.mwerkscompiler27 25 import distutils.text_file 28 26 import distutils.unixccompiler … … 56 54 import keyword 57 55 import linecache 58 import macurl2path59 56 import mailcap 60 57 import mimify … … 68 65 import py_compile 69 66 import rexec 70 import rlcompleter71 67 import sched 72 68 import sndhdr
Note:
See TracChangeset
for help on using the changeset viewer.