From 186ab215282b3504c3f3f48cddfa7873e23b42e1 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Sat, 18 Feb 2023 18:51:40 -0300 Subject: [PATCH] Update doc/en/explanation/pythonpath.rst --- doc/en/explanation/pythonpath.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/en/explanation/pythonpath.rst b/doc/en/explanation/pythonpath.rst index 9802a04fd..5b533f47f 100644 --- a/doc/en/explanation/pythonpath.rst +++ b/doc/en/explanation/pythonpath.rst @@ -24,7 +24,7 @@ these values: This is the classic mechanism, dating back from the time Python 2 was still supported. * ``append``: the directory containing each module is appended to the end of :py:data:`sys.path` if not already - there, and imported with ``importlib.import_module``. + there, and imported with :func:`importlib.import_module `. This better allows to run test modules against installed versions of a package even if the package under test has the same import root. For example: