From: Brett Cannon Date: Sat, 3 Jul 2010 22:03:16 +0000 (+0000) Subject: Fix a spelling mistake in a comment. X-Git-Tag: v3.2a1~333 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2cf1585499e264a6b1a3583a06d025e5ed24d9c9;p=python Fix a spelling mistake in a comment. --- diff --git a/Lib/importlib/test/test_api.py b/Lib/importlib/test/test_api.py index e7290137fc..0ffa3c4d80 100644 --- a/Lib/importlib/test/test_api.py +++ b/Lib/importlib/test/test_api.py @@ -27,7 +27,7 @@ class ImportModuleTests(unittest.TestCase): self.assertEqual(module.__name__, name) def test_shallow_relative_package_import(self): - # Test importing a module from a package through a relatve import. + # Test importing a module from a package through a relative import. pkg_name = 'pkg' pkg_long_name = '{0}.__init__'.format(pkg_name) module_name = 'mod'