https://github.com/python/cpython/commit/f6b7e5b10c5c0070834c25b4b4d91a1aebe200c1 commit: f6b7e5b10c5c0070834c25b4b4d91a1aebe200c1 branch: 3.15 author: Ned Batchelder <[email protected]> committer: hugovk <[email protected]> date: 2026-08-27T14:24:17+03:00 summary:
[3.15] Docs: remove __path__ discussion from tutorial (GH-156426) (#156455) files: M Doc/tools/removed-ids.txt M Doc/tutorial/modules.rst diff --git a/Doc/tools/removed-ids.txt b/Doc/tools/removed-ids.txt index ffffda3506c0663..d0c805bfa6e9ff8 100644 --- a/Doc/tools/removed-ids.txt +++ b/Doc/tools/removed-ids.txt @@ -6,6 +6,8 @@ c-api/file.html: deprecated-api library/asyncio-task.html: terminating-a-task-group +tutorial/modules.html: packages-in-multiple-directories + # Removed APIs c-api/import.html: c.PyImport_LazyImportsMode.PyImport_LAZY_NONE diff --git a/Doc/tutorial/modules.rst b/Doc/tutorial/modules.rst index f8105cd5441fec2..46a226be606aeba 100644 --- a/Doc/tutorial/modules.rst +++ b/Doc/tutorial/modules.rst @@ -584,20 +584,6 @@ Since the main module does not have a package, modules intended for use as the main module of a Python application must always use absolute imports. -Packages in Multiple Directories --------------------------------- - -Packages support one more special attribute, :attr:`~module.__path__`. This is -initialized to be a :term:`sequence` of strings containing the name of the -directory holding the -package's :file:`__init__.py` before the code in that file is executed. This -variable can be modified; doing so affects future searches for modules and -subpackages contained in the package. - -While this feature is not often needed, it can be used to extend the set of -modules found in a package. - - .. rubric:: Footnotes .. [#] In fact function definitions are also 'statements' that are 'executed'; the _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
