]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
s/use/call/
authorGeorg Brandl <georg@python.org>
Fri, 22 May 2009 09:50:30 +0000 (09:50 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 22 May 2009 09:50:30 +0000 (09:50 +0000)
Doc/library/functions.rst

index a91b099c7cda058b181502201cc45bd7d995604f..f1639486605ea548a3a9d932c4fad7677acdfd91 100644 (file)
@@ -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'