diff options
author | AN Long <aisk@users.noreply.github.com> | 2024-01-11 09:43:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-11 09:43:35 (GMT) |
commit | ec23e90082ffdedc7f0bdd2dfadfc4983ddc0712 (patch) | |
tree | 92abf2f4986293a3a4619e7859cdc25568a40d55 | |
parent | 2ac4cf4743a65ac54c7ac6a762bed636800598fe (diff) | |
download | cpython-ec23e90082ffdedc7f0bdd2dfadfc4983ddc0712.zip cpython-ec23e90082ffdedc7f0bdd2dfadfc4983ddc0712.tar.gz cpython-ec23e90082ffdedc7f0bdd2dfadfc4983ddc0712.tar.bz2 |
gh-112419: Document removal of sys.meta_path's 'find_module' fallback (#112421)
Co-authored-by: Erlend E. Aasland <erlend@python.org>
-rw-r--r-- | Doc/library/sys.rst | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/Doc/library/sys.rst b/Doc/library/sys.rst index 2426c37..c371663 100644 --- a/Doc/library/sys.rst +++ b/Doc/library/sys.rst @@ -1268,10 +1268,13 @@ always available. .. versionchanged:: 3.4 :term:`Module specs <module spec>` were introduced in Python 3.4, by - :pep:`451`. Earlier versions of Python looked for a method called - :meth:`!find_module`. - This is still called as a fallback if a :data:`meta_path` entry doesn't - have a :meth:`~importlib.abc.MetaPathFinder.find_spec` method. + :pep:`451`. + + .. versionchanged:: 3.12 + + Removed the fallback that looked for a :meth:`!find_module` method + if a :data:`meta_path` entry didn't have a + :meth:`~importlib.abc.MetaPathFinder.find_spec` method. .. data:: modules |