diff options
author | Benjamin Peterson <benjamin@python.org> | 2012-11-12 21:48:25 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2012-11-12 21:48:25 (GMT) |
commit | 29824550b1758bc96c24749ce5772e33d1615599 (patch) | |
tree | 7199469cce61301a9944ef143fd58423be2b9c26 /Lib/importlib | |
parent | abaca8cb0642c041a59d74e2b5775a80efe85240 (diff) | |
parent | debf64ce2b3396322711be3b13a7da36ab0fa564 (diff) | |
download | cpython-29824550b1758bc96c24749ce5772e33d1615599.zip cpython-29824550b1758bc96c24749ce5772e33d1615599.tar.gz cpython-29824550b1758bc96c24749ce5772e33d1615599.tar.bz2 |
merge 3.3
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 36f1c8f..4ddeadf 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): |