From: Eric Snow Date: Tue, 10 Dec 2013 03:33:33 +0000 (-0700) Subject: Remove commented-out module spec test code and an out-of-date note. X-Git-Tag: v3.4.0b2~270 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e3c39ddd97a0582c6594207cc367ad8ae01ffe01;p=thirdparty%2FPython%2Fcpython.git Remove commented-out module spec test code and an out-of-date note. --- diff --git a/Lib/test/test_importlib/test_spec.py b/Lib/test/test_importlib/test_spec.py index 9e73df8feefe..8880ffcbd836 100644 --- a/Lib/test/test_importlib/test_spec.py +++ b/Lib/test/test_importlib/test_spec.py @@ -17,13 +17,6 @@ import warnings class TestLoader: def __init__(self, path=None, is_package=None): -# if path: -# if is_package: -# if not path.endswith('.py'): -# path = os.path.join(path, '__init__.py') -# elif is_package is None: -# is_package = path.endswith('__init__.py') - self.path = path self.package = is_package @@ -554,9 +547,6 @@ class Source_ModuleSpecMethodsTests(ModuleSpecMethodsTests, unittest.TestCase): class ModuleReprTests: - # XXX Add more tests for repr(module) once ModuleSpec._module_repr() - # is in place? - def setUp(self): self.module = type(os)('spam') self.spec = self.machinery.ModuleSpec('spam', TestLoader())