From: Georg Brandl Date: Fri, 22 May 2009 09:50:30 +0000 (+0000) Subject: s/use/call/ X-Git-Tag: v2.7a1~1130 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e15048ea37c52df085b6323968d16f3e8c79209c;p=thirdparty%2FPython%2Fcpython.git s/use/call/ --- diff --git a/Doc/library/functions.rst b/Doc/library/functions.rst index a91b099c7cda..f1639486605e 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'