]> granicus.if.org Git - python/commitdiff
Fix a grammatical problem and reword for clarity. (#4257)
authorBarry Warsaw <barry@python.org>
Fri, 3 Nov 2017 20:45:46 +0000 (13:45 -0700)
committerGitHub <noreply@github.com>
Fri, 3 Nov 2017 20:45:46 +0000 (13:45 -0700)
bpo-31936

Doc/reference/import.rst

index 7fbf8ed9d789a4487956915ac95f17035cb18992..881e0aed32e2e31e0ab39f325fe9c50d4ac4bedb 100644 (file)
@@ -28,11 +28,10 @@ such as the importing of parent packages, and the updating of various caches
 (including :data:`sys.modules`), only the :keyword:`import` statement performs
 a name binding operation.
 
-When calling :func:`__import__` as part of an import statement, the
-standard builtin :func:`__import__` is called. Other mechanisms for
-invoking the import system (such as :func:`importlib.import_module`) may
-choose to subvert :func:`__import__` and use its own solution to
-implement import semantics.
+When an :keyword:`import` statement is executed, the standard builtin
+:func:`__import__` function is called. Other mechanisms for invoking the
+import system (such as :func:`importlib.import_module`) may choose to bypass
+:func:`__import__` and use their own solutions to implement import semantics.
 
 When a module is first imported, Python searches for the module and if found,
 it creates a module object [#fnmo]_, initializing it.  If the named module