Update doc/en/explanation/pythonpath.rst

This commit is contained in:
Bruno Oliveira 2023-02-18 18:51:40 -03:00 committed by GitHub
parent 1969fdbe18
commit 186ab21528
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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 <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: