]> granicus.if.org Git - python/commitdiff
#8370: fix module name in backported doc addition.
authorGeorg Brandl <georg@python.org>
Wed, 14 Apr 2010 21:36:49 +0000 (21:36 +0000)
committerGeorg Brandl <georg@python.org>
Wed, 14 Apr 2010 21:36:49 +0000 (21:36 +0000)
Doc/library/functions.rst

index cfb1945988f9a6d2cf96610e160392ba8f6bbc20..928e73a54e2c4a0d4cd5082cc3cfdd91ece9b7a0 100644 (file)
@@ -1448,8 +1448,8 @@ available.  They are listed here in alphabetical order.
       programming.
 
    This function is invoked by the :keyword:`import` statement.  It can be
-   replaced (by importing the :mod:`builtins` module and assigning to
-   ``builtins.__import__``) in order to change semantics of the
+   replaced (by importing the :mod:`__builtin__` module and assigning to
+   ``__builtin__.__import__``) in order to change semantics of the
    :keyword:`import` statement, but nowadays it is usually simpler to use import
    hooks (see :pep:`302`).  Direct use of :func:`__import__` is rare, except in
    cases where you want to import a module whose name is only known at runtime.