diff options
author | Brett Cannon <bcannon@gmail.com> | 2010-07-03 22:03:16 (GMT) |
---|---|---|
committer | Brett Cannon <bcannon@gmail.com> | 2010-07-03 22:03:16 (GMT) |
commit | 2cf1585499e264a6b1a3583a06d025e5ed24d9c9 (patch) | |
tree | 91116c700e13db7dbe322d26f77d5eca9a8a014e /Lib/importlib | |
parent | 767a0f86c0a2877761431c43dd6fa34adeb4508c (diff) | |
download | cpython-2cf1585499e264a6b1a3583a06d025e5ed24d9c9.zip cpython-2cf1585499e264a6b1a3583a06d025e5ed24d9c9.tar.gz cpython-2cf1585499e264a6b1a3583a06d025e5ed24d9c9.tar.bz2 |
Fix a spelling mistake in a comment.
Diffstat (limited to 'Lib/importlib')
-rw-r--r-- | Lib/importlib/test/test_api.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/test/test_api.py b/Lib/importlib/test/test_api.py index e729013..0ffa3c4 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' |