summaryrefslogtreecommitdiffstats
path: root/Doc/reference
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2023-10-27 13:29:55 (GMT)
committerGitHub <noreply@github.com>2023-10-27 13:29:55 (GMT)
commit2014c23de385c444a9eac8ebad84721c39a62b91 (patch)
tree1829b33fb1ac7f9980cde165e53de584b88441b7 /Doc/reference
parent7d22e855505bb1cd191b3ea224e828b084c0d699 (diff)
downloadcpython-2014c23de385c444a9eac8ebad84721c39a62b91.zip
cpython-2014c23de385c444a9eac8ebad84721c39a62b91.tar.gz
cpython-2014c23de385c444a9eac8ebad84721c39a62b91.tar.bz2
[3.12] Fix typos in import system docs (GH-111396) (#111397)
Fix typos in import system docs (GH-111396) (cherry picked from commit 9a2f2f46caa556eae4c3ac3b45efa85bd91cc807) Co-authored-by: Jonathan Berthias <jvberthias@gmail.com>
Diffstat (limited to 'Doc/reference')
-rw-r--r--Doc/reference/import.rst6
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: