Skip to content
Snippets Groups Projects
Unverified Commit 0dd32b52 authored by Miss Islington (bot)'s avatar Miss Islington (bot) Committed by GitHub
Browse files

gh-77521: Add link to builtin module names in modules tutorial (GH-92438)



Co-authored-by: default avatarJelle Zijlstra <jelle.zijlstra@gmail.com>
(cherry picked from commit 859250cc)

Co-authored-by: default avatarslateny <46876382+slateny@users.noreply.github.com>
parent 8e523c11
No related branches found
No related tags found
No related merge requests found
......@@ -183,7 +183,8 @@ The Module Search Path
.. index:: triple: module; search; path
When a module named :mod:`spam` is imported, the interpreter first searches for
a built-in module with that name. If not found, it then searches for a file
a built-in module with that name. These module names are listed in
:data:`sys.builtin_module_names`. If not found, it then searches for a file
named :file:`spam.py` in a list of directories given by the variable
:data:`sys.path`. :data:`sys.path` is initialized from these locations:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment