diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-11-12 21:48:17 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-11-12 21:48:17 (GMT) |
commit | debf64ce2b3396322711be3b13a7da36ab0fa564 (patch) | |
tree | 4eed8069a470b4b898bc85fe3a4264c88f29e499 /Lib/importlib | |
parent | 6df5cae49a6ff61ce523361d30784893e59f3837 (diff) | |
download | cpython-debf64ce2b3396322711be3b13a7da36ab0fa564.zip cpython-debf64ce2b3396322711be3b13a7da36ab0fa564.tar.gz cpython-debf64ce2b3396322711be3b13a7da36ab0fa564.tar.bz2 |
missing letter
Diffstat (limited to 'Lib/importlib')
-rw-r--r-- | Lib/importlib/_bootstrap.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py index 26d9250..888c2f5 100644 --- a/Lib/importlib/_bootstrap.py +++ b/Lib/importlib/_bootstrap.py @@ -1159,7 +1159,7 @@ class _NamespacePath: """Represents a namespace package's path. It uses the module name to find its parent module, and from there it looks up the parent's __path__. When this changes, the module's own path is recomputed, - using path_finder. For top-leve modules, the parent module's path + using path_finder. For top-level modules, the parent module's path is sys.path.""" def __init__(self, name, path, path_finder): |