diff options
author | Jonathan Berthias <jvberthias@gmail.com> | 2023-10-27 13:20:55 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-27 13:20:55 (GMT) |
commit | 9a2f2f46caa556eae4c3ac3b45efa85bd91cc807 (patch) | |
tree | b033b1b9c548e76528e4019228e268bb2ed9ab70 /Doc/reference | |
parent | 524a701d0742d2ae469771a065c62e41656a5dc7 (diff) | |
download | cpython-9a2f2f46caa556eae4c3ac3b45efa85bd91cc807.zip cpython-9a2f2f46caa556eae4c3ac3b45efa85bd91cc807.tar.gz cpython-9a2f2f46caa556eae4c3ac3b45efa85bd91cc807.tar.bz2 |
Fix typos in import system docs (#111396)
Diffstat (limited to 'Doc/reference')
-rw-r--r-- | Doc/reference/import.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/reference/import.rst b/Doc/reference/import.rst index 1a2677e..a7beeea 100644 --- a/Doc/reference/import.rst +++ b/Doc/reference/import.rst @@ -559,7 +559,7 @@ listed below. functionality, for example getting data associated with a loader. It is **strongly** recommended that you rely on :attr:`__spec__` - instead instead of this attribute. + instead of this attribute. .. versionchanged:: 3.12 The value of ``__loader__`` is expected to be the same as @@ -580,7 +580,7 @@ listed below. relative imports for main modules, as defined in :pep:`366`. It is **strongly** recommended that you rely on :attr:`__spec__` - instead instead of this attribute. + instead of this attribute. .. versionchanged:: 3.6 The value of ``__package__`` is expected to be the same as @@ -650,7 +650,7 @@ listed below. from a file, that atypical scenario may be appropriate. It is **strongly** recommended that you rely on :attr:`__spec__` - instead instead of ``__cached__``. + instead of ``__cached__``. .. _package-path-rules: |