PEP 302: Resolve uses of the default role (#3369)

This commit is contained in:
Adam Turner 2023-09-01 20:30:43 +01:00 committed by GitHub
parent 0e6087cfff
commit 303c618638
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -428,7 +428,7 @@ built-in import mechanism". They simply won't invoke any import hooks. A new
if loader is not None:
loader.load_module(fullname)
In the case of a "basic" import, one the `imp.find_module()` function would
In the case of a "basic" import, one the ``imp.find_module()`` function would
handle, the loader object would be a wrapper for the current output of
``imp.find_module()``, and ``loader.load_module()`` would call
``imp.load_module()`` with that output.