Commit e3c39ddd authored by Eric Snow's avatar Eric Snow

Remove commented-out module spec test code and an out-of-date note.

parent c1e7c747
......@@ -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())
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment