summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-05-22 09:50:30 (GMT)
committerGeorg Brandl <georg@python.org>2009-05-22 09:50:30 (GMT)
commite15048ea37c52df085b6323968d16f3e8c79209c (patch)
tree52cc6e95842e17336da9a68f66e919dd6c5c44b3
parent22396da5eebd5ea8b97ccc09443db4a484974a90 (diff)
downloadcpython-e15048ea37c52df085b6323968d16f3e8c79209c.zip
cpython-e15048ea37c52df085b6323968d16f3e8c79209c.tar.gz
cpython-e15048ea37c52df085b6323968d16f3e8c79209c.tar.bz2
s/use/call/
-rw-r--r--Doc/library/functions.rst2
1 files changed, 1 insertions, 1 deletions
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 @@ available. They are listed here in alphabetical order.
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'