Skip to content

Commit

Permalink
Clarify that __path__ can't be just any value (pythonGH-6554)
Browse files Browse the repository at this point in the history
  • Loading branch information
brettcannon authored Apr 20, 2018
1 parent a8c3424 commit 441d945
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions Doc/reference/import.rst
Original file line number Diff line number Diff line change
Expand Up @@ -616,8 +616,7 @@ the module.
module.__path__
---------------

By definition, if a module has a ``__path__`` attribute, it is a package,
regardless of its value.
By definition, if a module has a ``__path__`` attribute, it is a package.

A package's ``__path__`` attribute is used during imports of its subpackages.
Within the import machinery, it functions much the same as :data:`sys.path`,
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Clarify that the ``__path__`` attribute on modules cannot be just any value.

0 comments on commit 441d945

Please sign in to comment.