commit | e15048ea37c52df085b6323968d16f3e8c79209c | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Fri May 22 09:50:30 2009 +0000 |
committer | Georg Brandl <georg@python.org> | Fri May 22 09:50:30 2009 +0000 |
tree | 52cc6e95842e17336da9a68f66e919dd6c5c44b3 | |
parent | 22396da5eebd5ea8b97ccc09443db4a484974a90 [diff] |
s/use/call/
diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index a91b099..f163948 100644 --- a/Doc/library/functions.rst +++ b/Doc/library/functions.rst
@@ -1483,7 +1483,7 @@ names. If you simply want to import a module (potentially within a package) by name, - you can use :func:`__import__` and then look it up in :data:`sys.modules`:: + you can call :func:`__import__` and then look it up in :data:`sys.modules`:: >>> import sys >>> name = 'foo.bar.baz'