summaryrefslogtreecommitdiffstats
path: root/Lib/importlib
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2010-07-03 22:03:16 (GMT)
committerBrett Cannon <bcannon@gmail.com>2010-07-03 22:03:16 (GMT)
commit2cf1585499e264a6b1a3583a06d025e5ed24d9c9 (patch)
tree91116c700e13db7dbe322d26f77d5eca9a8a014e /Lib/importlib
parent767a0f86c0a2877761431c43dd6fa34adeb4508c (diff)
downloadcpython-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.py2
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'