2012-04-19 16:16:16 -04:00
|
|
|
|
PEP: 420
|
|
|
|
|
Title: Implicit Namespace Packages
|
|
|
|
|
Version: $Revision$
|
|
|
|
|
Last-Modified: $Date$
|
|
|
|
|
Author: Eric V. Smith <eric@trueblade.com>
|
|
|
|
|
Status: Draft
|
|
|
|
|
Type: Standards Track
|
|
|
|
|
Content-Type: text/x-rst
|
|
|
|
|
Created: 19-Apr-2012
|
|
|
|
|
Python-Version: 3.3
|
|
|
|
|
Post-History:
|
|
|
|
|
|
|
|
|
|
Abstract
|
|
|
|
|
========
|
|
|
|
|
|
2012-05-04 15:40:10 -04:00
|
|
|
|
Namespace packages are a mechanism for splitting a single Python package
|
|
|
|
|
across multiple directories on disk. In current Python versions, an algorithm
|
|
|
|
|
to compute the packages ``__path__`` must be formulated. With the enhancement
|
|
|
|
|
proposed here, the import machinery itself will construct the list of
|
|
|
|
|
directories that make up the package. This PEP builds upon previous work,
|
|
|
|
|
documented in PEP 382 and PEP 402. Those PEPs have since been rejected in
|
|
|
|
|
favor of this one. An implementation of this PEP is at [1]_.
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
|
|
|
|
Terminology
|
|
|
|
|
===========
|
|
|
|
|
|
2012-04-20 06:29:55 -04:00
|
|
|
|
Within this PEP:
|
|
|
|
|
|
|
|
|
|
* "package" refers to Python packages as defined by Python's import
|
|
|
|
|
statement.
|
|
|
|
|
* "distribution" refers to separately installable sets of Python
|
|
|
|
|
modules as stored in the Python package index, and installed by
|
|
|
|
|
distutils or setuptools.
|
|
|
|
|
* "vendor package" refers to groups of files installed by an
|
|
|
|
|
operating system's packaging mechanism (e.g. Debian or Redhat
|
|
|
|
|
packages install on Linux systems).
|
|
|
|
|
* "regular package" refers to packages as they are implemented in
|
2012-05-01 08:22:49 -04:00
|
|
|
|
Python 3.2 and earlier.
|
2012-05-16 10:17:39 -04:00
|
|
|
|
* "portion" refers to a set of files in a single directory (possibly
|
|
|
|
|
stored in a zip file) that contribute to a namespace package.
|
2012-05-15 22:13:32 -04:00
|
|
|
|
* "legacy portion" refers to a portion that uses ``__path__``
|
|
|
|
|
manipulation in order to implement namespace packages.
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
2012-05-01 08:22:49 -04:00
|
|
|
|
This PEP defines a new type of package, the "namespace package".
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
|
|
|
|
Namespace packages today
|
|
|
|
|
========================
|
|
|
|
|
|
2012-04-25 13:33:23 -04:00
|
|
|
|
Python currently provides ``pkgutil.extend_path`` to denote a package
|
|
|
|
|
as a namespace package. The recommended way of using it is to put::
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
|
|
|
|
from pkgutil import extend_path
|
|
|
|
|
__path__ = extend_path(__path__, __name__)
|
|
|
|
|
|
2012-04-25 13:33:23 -04:00
|
|
|
|
in the package's ``__init__.py``. Every distribution needs to provide
|
2012-04-20 08:18:01 -04:00
|
|
|
|
the same contents in its ``__init__.py``, so that ``extend_path`` is
|
2012-04-19 16:16:16 -04:00
|
|
|
|
invoked independent of which portion of the package gets imported
|
2012-04-25 13:33:23 -04:00
|
|
|
|
first. As a consequence, the package's ``__init__.py`` cannot
|
2012-04-19 16:16:16 -04:00
|
|
|
|
practically define any names as it depends on the order of the package
|
2012-04-20 09:22:25 -04:00
|
|
|
|
fragments on ``sys.path`` to determine which portion is imported
|
2012-04-25 13:33:23 -04:00
|
|
|
|
first. As a special feature, ``extend_path`` reads files named
|
2012-04-20 09:22:25 -04:00
|
|
|
|
``<packagename>.pkg`` which allows declaration of additional portions.
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
2012-04-19 18:10:05 -04:00
|
|
|
|
setuptools provides a similar function named
|
2012-04-20 06:29:55 -04:00
|
|
|
|
``pkg_resources.declare_namespace`` that is used in the form::
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
|
|
|
|
import pkg_resources
|
|
|
|
|
pkg_resources.declare_namespace(__name__)
|
|
|
|
|
|
2012-04-20 06:29:55 -04:00
|
|
|
|
In the portion's ``__init__.py``, no assignment to ``__path__`` is
|
|
|
|
|
necessary, as ``declare_namespace`` modifies the package ``__path__``
|
2012-04-25 13:33:23 -04:00
|
|
|
|
through ``sys.modules``. As a special feature, ``declare_namespace``
|
2012-04-20 06:29:55 -04:00
|
|
|
|
also supports zip files, and registers the package name internally so
|
|
|
|
|
that future additions to ``sys.path`` by setuptools can properly add
|
|
|
|
|
additional portions to each package.
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
|
|
|
|
setuptools allows declaring namespace packages in a distribution's
|
2012-04-20 06:29:55 -04:00
|
|
|
|
``setup.py``, so that distribution developers don't need to put the
|
|
|
|
|
magic ``__path__`` modification into ``__init__.py`` themselves.
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
2012-05-14 10:45:28 -04:00
|
|
|
|
See PEP 402's "The Problem" section [2]_ for more details on the
|
2012-05-14 20:51:54 -04:00
|
|
|
|
motivation for namespace packages. Note that PEP 402 has been
|
2012-05-14 10:45:28 -04:00
|
|
|
|
rejected, but the motivating use cases are still valid.
|
|
|
|
|
|
2012-04-19 16:16:16 -04:00
|
|
|
|
Rationale
|
|
|
|
|
=========
|
|
|
|
|
|
2012-05-20 19:39:00 -04:00
|
|
|
|
The current imperative approach to namespace packages has led to
|
2012-04-19 16:16:16 -04:00
|
|
|
|
multiple slightly-incompatible mechanisms for providing namespace
|
2012-04-25 13:33:23 -04:00
|
|
|
|
packages. For example, pkgutil supports ``*.pkg`` files; setuptools
|
|
|
|
|
doesn't. Likewise, setuptools supports inspecting zip files, and
|
2012-04-20 06:29:55 -04:00
|
|
|
|
supports adding portions to its ``_namespace_packages`` variable,
|
|
|
|
|
whereas pkgutil doesn't.
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
2012-04-20 06:20:24 -04:00
|
|
|
|
Namespace packages are designed to support being split across multiple
|
2012-04-20 08:35:55 -04:00
|
|
|
|
directories (and hence found via multiple ``sys.path`` entries). In
|
|
|
|
|
this configuration, it doesn't matter if multiple portions all provide
|
|
|
|
|
an ``__init__.py`` file, so long as each portion correctly initializes
|
2012-04-25 13:33:23 -04:00
|
|
|
|
the namespace package. However, Linux distribution vendors (amongst
|
2012-04-20 06:20:24 -04:00
|
|
|
|
others) prefer to combine the separate portions and install them all
|
2012-05-17 10:31:43 -04:00
|
|
|
|
into the *same* file system directory. This creates a potential for
|
2012-04-20 06:20:24 -04:00
|
|
|
|
conflict, as the portions are now attempting to provide the *same*
|
|
|
|
|
file on the target system - something that is not allowed by many
|
2012-04-25 13:33:23 -04:00
|
|
|
|
package managers. Allowing implicit namespace packages means that the
|
2012-04-20 06:20:24 -04:00
|
|
|
|
requirement to provide an ``__init__.py`` file can be dropped
|
|
|
|
|
completely, and affected portions can be installed into a common
|
|
|
|
|
directory or split across multiple directories as distributions see
|
|
|
|
|
fit.
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
|
|
|
|
Specification
|
|
|
|
|
=============
|
|
|
|
|
|
2012-04-20 06:29:55 -04:00
|
|
|
|
Regular packages will continue to have an ``__init__.py`` and will
|
|
|
|
|
reside in a single directory.
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
2012-04-25 13:33:23 -04:00
|
|
|
|
Namespace packages cannot contain an ``__init__.py``. As a
|
2012-04-20 08:18:01 -04:00
|
|
|
|
consequence, ``pkgutil.extend_path`` and
|
|
|
|
|
``pkg_resources.declare_namespace`` become obsolete for purposes of
|
2012-04-25 13:33:23 -04:00
|
|
|
|
namespace package creation. There will be no marker file or directory
|
2012-05-04 15:40:10 -04:00
|
|
|
|
for specifying a namespace package.
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
|
|
|
|
During import processing, the import machinery will continue to
|
2012-05-02 11:16:48 -04:00
|
|
|
|
iterate over each directory in the parent path as it does in Python
|
|
|
|
|
3.2. While looking for a module or package named "foo", for each
|
|
|
|
|
directory in the parent path:
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
2012-05-02 11:16:48 -04:00
|
|
|
|
* If ``<directory>/foo/__init__.py`` is found, a regular package is
|
|
|
|
|
imported and returned.
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
2012-05-02 11:16:48 -04:00
|
|
|
|
* If not, but ``<directory>/foo.{py,pyc,so,pyd}`` is found, a module
|
2012-05-20 19:39:00 -04:00
|
|
|
|
is imported and returned. The exact list of extension varies by
|
|
|
|
|
platform and whether the -O flag is specified. The list here is
|
|
|
|
|
representative.
|
2012-05-02 11:16:48 -04:00
|
|
|
|
|
|
|
|
|
* If not, but ``<directory>/foo`` is found and is a directory, it is
|
|
|
|
|
recorded and the scan continues with the next directory in the
|
|
|
|
|
parent path.
|
|
|
|
|
|
|
|
|
|
* Otherwise the scan continues with the next directory in the parent
|
|
|
|
|
path.
|
|
|
|
|
|
|
|
|
|
If the scan completes without returning a module or package, and at
|
|
|
|
|
least one directory was recorded, then a namespace package is created.
|
|
|
|
|
The new namespace package:
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
2012-05-14 10:45:28 -04:00
|
|
|
|
* Has a ``__path__`` attribute set to an iterable of the path strings
|
|
|
|
|
that were found and recorded during the scan.
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
2012-05-04 17:44:32 -04:00
|
|
|
|
* Does not have a ``__file__`` attribute.
|
|
|
|
|
|
2012-04-19 16:16:16 -04:00
|
|
|
|
Note that if "import foo" is executed and "foo" is found as a
|
|
|
|
|
namespace package (using the above rules), then "foo" is immediately
|
2012-04-25 13:33:23 -04:00
|
|
|
|
created as a package. The creation of the namespace package is not
|
2012-04-19 16:16:16 -04:00
|
|
|
|
deferred until a sub-level import occurs.
|
|
|
|
|
|
2012-04-25 13:52:33 -04:00
|
|
|
|
A namespace package is not fundamentally different from a regular
|
2012-05-09 20:22:29 -04:00
|
|
|
|
package. It is just a different way of creating packages. Once a
|
2012-04-25 13:52:33 -04:00
|
|
|
|
namespace package is created, there is no functional difference
|
2012-05-14 10:45:28 -04:00
|
|
|
|
between it and a regular package.
|
2012-04-25 13:52:33 -04:00
|
|
|
|
|
2012-05-11 12:56:56 -04:00
|
|
|
|
Dynamic path computation
|
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
|
|
A namespace package's ``__path__`` will be recomputed if the value of
|
|
|
|
|
the parent path changes. In order for this feature to work, the parent
|
|
|
|
|
path must be modified in-place, not replaced with a new object. For
|
|
|
|
|
example, for top-level namespace packages, this will work::
|
|
|
|
|
|
|
|
|
|
sys.path.append('new-dir')
|
|
|
|
|
|
|
|
|
|
But this will not::
|
|
|
|
|
|
|
|
|
|
sys.path = sys.path + ['new-dir']
|
|
|
|
|
|
2012-05-15 14:08:43 -04:00
|
|
|
|
Impact on import finders and loaders
|
2012-04-20 08:11:56 -04:00
|
|
|
|
------------------------------------
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
2012-04-25 13:33:23 -04:00
|
|
|
|
PEP 302 defines "finders" that are called to search path elements.
|
2012-05-09 20:16:09 -04:00
|
|
|
|
These finders' ``find_module`` methods return either a "loader" object
|
2012-05-15 21:53:01 -04:00
|
|
|
|
or ``None``.
|
2012-05-09 20:16:09 -04:00
|
|
|
|
|
|
|
|
|
For a finder to contribute to namespace packages, it must implement a
|
|
|
|
|
new ``find_loader(fullname)`` method. ``fullname`` has the same
|
2012-05-10 21:01:01 -04:00
|
|
|
|
meaning as for ``find_module``. ``find_loader`` always returns a
|
|
|
|
|
2-tuple of ``(loader, <iterable-of-path-entries>)``. ``loader`` may
|
2012-05-15 21:53:01 -04:00
|
|
|
|
be ``None``, in which case ``<iterable-of-path-entries>`` (which may
|
|
|
|
|
be empty) is added to the list of recorded path entries and path
|
|
|
|
|
searching continues. If ``loader`` is not ``None``, it is immediately
|
2012-05-11 12:46:44 -04:00
|
|
|
|
used to load a module or regular package.
|
2012-05-10 21:01:01 -04:00
|
|
|
|
|
2012-05-15 22:13:32 -04:00
|
|
|
|
Even if ``loader`` is returned and is not ``None``,
|
|
|
|
|
``<iterable-of-path-entries>`` must still contain the path entries for
|
|
|
|
|
the package. This allows code such as ``pkgutil.extend_path()`` to
|
|
|
|
|
compute path entries for packages that it does not load.
|
|
|
|
|
|
2012-05-10 21:01:01 -04:00
|
|
|
|
Note that multiple path entries per finder are allowed. This is to
|
2012-05-09 20:16:09 -04:00
|
|
|
|
support the case where a finder discovers multiple namespace portions
|
|
|
|
|
for a given ``fullname``. Many finders will support only a single
|
|
|
|
|
namespace package portion per ``find_loader`` call, in which case this
|
2012-05-11 12:46:44 -04:00
|
|
|
|
iterable will contain only a single string.
|
2012-05-09 20:16:09 -04:00
|
|
|
|
|
2012-05-10 21:01:01 -04:00
|
|
|
|
The import machinery will call ``find_loader`` if it exists, else fall
|
|
|
|
|
back to ``find_module``. Legacy finders which implement
|
|
|
|
|
``find_module`` but not ``find_loader`` will be unable to contribute
|
|
|
|
|
portions to a namespace package.
|
2012-04-24 13:05:25 -04:00
|
|
|
|
|
2012-05-04 15:40:10 -04:00
|
|
|
|
The specification expands PEP 302 loaders to include an optional method called
|
|
|
|
|
``module_repr()`` which if present, is used to generate module object reprs.
|
|
|
|
|
See the section below for further details.
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
2012-05-14 10:45:28 -04:00
|
|
|
|
Differences between namespace packages and regular packages
|
|
|
|
|
-----------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
Namespace packages and regular packages are very similar. The
|
|
|
|
|
differences are:
|
|
|
|
|
|
|
|
|
|
* Portions of namespace packages need not all come from the same
|
|
|
|
|
directory structure, or even from the same loader. Regular packages
|
|
|
|
|
are self-contained: all parts live in the same directory hierarchy.
|
|
|
|
|
|
|
|
|
|
* Namespace packages have no ``__file__`` attribute.
|
|
|
|
|
|
|
|
|
|
* Namespace packages' ``__path__`` attribute is a read-only iterable
|
|
|
|
|
of strings, which is automatically updated when the parent path is
|
|
|
|
|
modified.
|
|
|
|
|
|
|
|
|
|
* Namespace packages have no ``__init__.py`` module.
|
|
|
|
|
|
|
|
|
|
* Namespace packages have a different type of object for their
|
|
|
|
|
``__loader__`` attribute.
|
|
|
|
|
|
|
|
|
|
|
2012-05-14 20:51:54 -04:00
|
|
|
|
Namespace packages in the standard library
|
|
|
|
|
------------------------------------------
|
|
|
|
|
|
2012-05-15 21:43:40 -04:00
|
|
|
|
It is possible, and this PEP explicitly allows, that parts of the
|
2012-05-14 20:51:54 -04:00
|
|
|
|
standard library be implemented as namespace packages. When and if
|
|
|
|
|
any standard library packages become namespace packages is outside the
|
|
|
|
|
scope of this PEP.
|
|
|
|
|
|
|
|
|
|
|
2012-05-15 22:13:32 -04:00
|
|
|
|
Migrating from legacy namespace packages
|
|
|
|
|
----------------------------------------
|
|
|
|
|
|
|
|
|
|
As described above, prior to this PEP ``pkgutil.extend_path()`` was
|
|
|
|
|
used by legacy portions to create namespace packages. Because it is
|
|
|
|
|
likely not practical for all existing portions of a namespace package
|
|
|
|
|
to be migrated to this PEP at once, ``extend_path()`` will be modified
|
|
|
|
|
to also recognize PEP 420 namespace packages. This will allow some
|
2012-05-16 09:53:58 -04:00
|
|
|
|
portions of a namespace to be legacy portions while others are
|
|
|
|
|
migrated to PEP 420. These hybrid namespace packages will not have
|
|
|
|
|
the dynamic path computation that normal namespace packages have,
|
|
|
|
|
since ``extend_path()`` never provided this functionality in the past.
|
2012-05-15 22:13:32 -04:00
|
|
|
|
|
|
|
|
|
|
2012-05-01 12:45:32 -04:00
|
|
|
|
Packaging Implications
|
|
|
|
|
======================
|
|
|
|
|
|
|
|
|
|
Multiple portions of a namespace package can be installed into the
|
|
|
|
|
same directory, or into separate directories. For this section,
|
|
|
|
|
suppose there are two portions which define "foo.bar" and "foo.baz".
|
|
|
|
|
"foo" itself is a namespace package.
|
|
|
|
|
|
|
|
|
|
If these are installed in the same location, a single directory "foo"
|
|
|
|
|
would be in a directory that is on ``sys.path``. Inside "foo" would
|
|
|
|
|
be two directories, "bar" and "baz". If "foo.bar" is removed (perhaps
|
|
|
|
|
by an OS package manager), care must be taken not to remove the
|
|
|
|
|
"foo/baz" or "foo" directories. Note that in this case "foo" will be
|
|
|
|
|
a namespace package (because it lacks an ``__init__.py``), even though
|
|
|
|
|
all of its portions are in the same directory.
|
|
|
|
|
|
|
|
|
|
Note that "foo.bar" and "foo.baz" can be installed into the same "foo"
|
|
|
|
|
directory because they will not have any files in common.
|
|
|
|
|
|
|
|
|
|
If the portions are installed in different locations, two different
|
|
|
|
|
"foo" directories would be in directories that are on ``sys.path``.
|
|
|
|
|
"foo/bar" would be in one of these sys.path entries, and "foo/baz"
|
|
|
|
|
would be in the other. Upon removal of "foo.bar", the "foo/bar" and
|
2012-05-09 20:22:29 -04:00
|
|
|
|
corresponding "foo" directories can be completely removed. But
|
2012-05-01 12:45:32 -04:00
|
|
|
|
"foo/baz" and its corresponding "foo" directory cannot be removed.
|
|
|
|
|
|
|
|
|
|
It is also possible to have the "foo.bar" portion installed in a
|
|
|
|
|
directory on ``sys.path``, and have the "foo.baz" portion provided in
|
|
|
|
|
a zip file, also on ``sys.path``.
|
|
|
|
|
|
2012-04-19 16:16:16 -04:00
|
|
|
|
Discussion
|
|
|
|
|
==========
|
|
|
|
|
|
2012-05-01 08:22:49 -04:00
|
|
|
|
At PyCon 2012, we had a discussion about namespace packages at which
|
2012-05-14 10:45:28 -04:00
|
|
|
|
PEP 382 and PEP 402 were rejected, to be replaced by this PEP [3]_.
|
2012-05-01 08:22:49 -04:00
|
|
|
|
|
2012-05-01 10:55:21 -04:00
|
|
|
|
There is no intention to remove support of regular packages. If a
|
|
|
|
|
developer knows that her package will never be a portion of a
|
|
|
|
|
namespace package, then there is a performance advantage to it being a
|
|
|
|
|
regular package (with an ``__init__.py``). Creation and loading of a
|
|
|
|
|
regular package can take place immediately when it is located along
|
|
|
|
|
the path. With namespace packages, all entries in the path must be
|
|
|
|
|
scanned before the package is created.
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
2012-04-20 04:51:07 -04:00
|
|
|
|
Note that an ImportWarning will no longer be raised for a directory
|
2012-04-25 13:33:23 -04:00
|
|
|
|
lacking an ``__init__.py`` file. Such a directory will now be
|
|
|
|
|
imported as a namespace package, whereas in prior Python versions an
|
2012-04-26 11:05:41 -04:00
|
|
|
|
ImportWarning would be raised.
|
2012-04-19 18:56:22 -04:00
|
|
|
|
|
2012-05-14 10:45:28 -04:00
|
|
|
|
Nick Coghlan presented a list of his objections to this proposal [4]_.
|
2012-04-25 13:33:23 -04:00
|
|
|
|
They are:
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
2012-05-01 12:37:58 -04:00
|
|
|
|
1. Implicit package directories go against the Zen of Python.
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
2012-05-01 12:37:58 -04:00
|
|
|
|
2. Implicit package directories pose awkward backwards compatibility
|
|
|
|
|
challenges.
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
2012-05-17 10:31:43 -04:00
|
|
|
|
3. Implicit package directories introduce ambiguity into file system
|
2012-05-01 12:37:58 -04:00
|
|
|
|
layouts.
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
2012-05-01 12:37:58 -04:00
|
|
|
|
4. Implicit package directories will permanently entrench current
|
2012-05-15 21:43:40 -04:00
|
|
|
|
newbie-hostile behavior in ``__main__``.
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
2012-05-20 19:39:00 -04:00
|
|
|
|
Nick later gave a detailed response to his own objections[5]_, which
|
|
|
|
|
is summarized here:
|
2012-05-01 12:37:58 -04:00
|
|
|
|
|
2012-05-01 12:41:37 -04:00
|
|
|
|
1. The practicality of this PEP wins over other proposals and the
|
|
|
|
|
status quo.
|
2012-05-01 12:37:58 -04:00
|
|
|
|
|
|
|
|
|
2. Minor backward compatibility issues are okay, as long as they are
|
|
|
|
|
properly documented.
|
|
|
|
|
|
|
|
|
|
3. This will be addressed in PEP 395.
|
|
|
|
|
|
|
|
|
|
4. This will also be addressed in PEP 395.
|
2012-04-19 16:16:16 -04:00
|
|
|
|
|
2012-05-17 06:08:31 -04:00
|
|
|
|
The inclusion of namespace packages in the standard library was
|
|
|
|
|
motivated by Martin v. Löwis, who wanted the ``encodings`` package to
|
2012-05-17 06:11:42 -04:00
|
|
|
|
become a namespace package [6]_. While this PEP allows for standard
|
2012-05-17 06:08:31 -04:00
|
|
|
|
library packages to become namespaces, it defers a decision on
|
|
|
|
|
``encodings``.
|
|
|
|
|
|
2012-05-09 20:16:09 -04:00
|
|
|
|
``find_module`` versus ``find_loader``
|
|
|
|
|
--------------------------------------
|
|
|
|
|
|
|
|
|
|
An early draft of this PEP specified a change to the ``find_module``
|
|
|
|
|
method in order to support namespace packages. It would be modified
|
|
|
|
|
to return a string in the case where a namespace package portion was
|
|
|
|
|
discovered.
|
|
|
|
|
|
|
|
|
|
However, this caused a problem with existing code outside of the
|
|
|
|
|
standard library which calls ``find_module``. Because this code would
|
|
|
|
|
not be upgraded in concert with changes required by this PEP, it would
|
|
|
|
|
fail when it would receive unexpected return values from
|
|
|
|
|
``find_module``. Because of this incompatibility, this PEP now
|
|
|
|
|
specifies that finders that want to provide namespace portions must
|
|
|
|
|
implement the ``find_loader`` method, described above.
|
|
|
|
|
|
|
|
|
|
The use case for supporting multiple portions per ``find_loader`` call
|
2012-05-17 06:08:31 -04:00
|
|
|
|
is given in [7]_.
|
2012-05-09 20:16:09 -04:00
|
|
|
|
|
|
|
|
|
|
2012-05-04 15:40:10 -04:00
|
|
|
|
Module reprs
|
|
|
|
|
============
|
|
|
|
|
|
|
|
|
|
Previously, module reprs were hard coded based on assumptions about a module's
|
|
|
|
|
``__file__`` attribute. If this attribute existed and was a string, it was
|
|
|
|
|
assumed to be a file system path, and the module object's repr would include
|
|
|
|
|
this in its value. The only exception was that PEP 302 reserved missing
|
|
|
|
|
``__file__`` attributes to built-in modules, and in CPython, this assumption
|
|
|
|
|
was baked into the module object's implementation. Because of this
|
2012-05-17 09:31:53 -04:00
|
|
|
|
restriction, some modules contained contrived ``__file__`` values that did not
|
2012-05-04 15:40:10 -04:00
|
|
|
|
reflect file system paths, and which could cause unexpected problems later
|
|
|
|
|
(e.g. ``os.path.join()`` on a non-path ``__file__`` would return gibberish).
|
|
|
|
|
|
|
|
|
|
This PEP relaxes this constraint, and leaves the setting of ``__file__`` to
|
|
|
|
|
the purview of the loader producing the module. Loaders may opt to leave
|
2012-05-04 15:51:09 -04:00
|
|
|
|
``__file__`` unset if no file system path is appropriate. Loaders may also
|
|
|
|
|
set additional reserved attributes on the module if useful. This means that
|
|
|
|
|
the definitive way to determine the origin of a module is to check its
|
2012-05-04 15:40:10 -04:00
|
|
|
|
``__loader__`` attribute.
|
|
|
|
|
|
|
|
|
|
For example, namespace packages as described in this PEP will have no
|
|
|
|
|
``__file__`` attribute because no corresponding file exists. In order to
|
|
|
|
|
provide flexibility and descriptiveness in the reprs of such modules, a new
|
|
|
|
|
optional protocol is added to PEP 302 loaders. Loaders can implement a
|
|
|
|
|
``module_repr()`` method which takes a single argument, the module object.
|
|
|
|
|
This method should return the string to be used verbatim as the repr of the
|
|
|
|
|
module. The rules for producing a module repr are now standardized as:
|
|
|
|
|
|
|
|
|
|
* If the module has an ``__loader__`` and that loader has a ``module_repr()``
|
|
|
|
|
method, call it with a single argument, which is the module object. The
|
|
|
|
|
value returned is used as the module's repr.
|
2012-05-21 15:56:20 -04:00
|
|
|
|
* If an exception occurs in ``module_repr()``, the exception is
|
|
|
|
|
caught and discarded, and the calculation of the module's repr
|
|
|
|
|
continues as if ``module_repr()`` did not exist.
|
2012-05-04 15:40:10 -04:00
|
|
|
|
* If the module has an ``__file__`` attribute, this is used as part of the
|
|
|
|
|
module's repr.
|
|
|
|
|
* If the module has no ``__file__`` but does have an ``__loader__``, then the
|
|
|
|
|
loader's repr is used as part of the module's repr.
|
|
|
|
|
* Otherwise, just use the module's ``__name__`` in the repr.
|
|
|
|
|
|
2012-05-21 15:56:20 -04:00
|
|
|
|
Here is a snippet showing how namespace module reprs are calculated
|
|
|
|
|
from its loader::
|
|
|
|
|
|
|
|
|
|
class NamespaceLoader:
|
|
|
|
|
@classmethod
|
|
|
|
|
def module_repr(cls, module):
|
|
|
|
|
return "<module '{}' (namespace)>".format(module.__name__)
|
|
|
|
|
|
|
|
|
|
Built-in module reprs would no longer need to be hard-coded, but
|
|
|
|
|
instead would come from their loader as well::
|
|
|
|
|
|
|
|
|
|
class BuiltinImporter:
|
|
|
|
|
@classmethod
|
|
|
|
|
def module_repr(cls, module):
|
|
|
|
|
return "<module '{}' (built-in)>".format(module.__name__)
|
|
|
|
|
|
|
|
|
|
Here are some example reprs of different types of modules with
|
|
|
|
|
different sets of the related attributes::
|
|
|
|
|
|
|
|
|
|
>>> import email
|
|
|
|
|
>>> email
|
|
|
|
|
<module 'email' from '/home/barry/projects/python/pep-420/Lib/email/__init__.py'>
|
|
|
|
|
>>> m = type(email)('foo')
|
|
|
|
|
>>> m
|
|
|
|
|
<module 'foo'>
|
|
|
|
|
>>> m.__file__ = 'zippy:/de/do/dah'
|
|
|
|
|
>>> m
|
|
|
|
|
<module 'foo' from 'zippy:/de/do/dah'>
|
|
|
|
|
>>> class Loader: pass
|
|
|
|
|
...
|
|
|
|
|
>>> m.__loader__ = Loader
|
|
|
|
|
>>> del m.__file__
|
|
|
|
|
>>> m
|
|
|
|
|
<module 'foo' (<class '__main__.Loader'>)>
|
|
|
|
|
>>> class NewLoader:
|
|
|
|
|
... @classmethod
|
|
|
|
|
... def module_repr(cls, module):
|
|
|
|
|
... return '<mystery module!>'
|
|
|
|
|
...
|
|
|
|
|
>>> m.__loader__ = NewLoader
|
|
|
|
|
>>> m
|
|
|
|
|
<mystery module!>
|
|
|
|
|
>>>
|
|
|
|
|
|
2012-05-04 15:40:10 -04:00
|
|
|
|
|
2012-04-19 16:16:16 -04:00
|
|
|
|
References
|
|
|
|
|
==========
|
|
|
|
|
|
2012-04-24 07:12:00 -04:00
|
|
|
|
.. [1] PEP 420 branch (http://hg.python.org/features/pep-420)
|
|
|
|
|
|
2012-05-14 10:45:28 -04:00
|
|
|
|
.. [2] PEP 402's description of use cases for namespace packages
|
|
|
|
|
(http://www.python.org/dev/peps/pep-0402/#the-problem)
|
|
|
|
|
|
|
|
|
|
.. [3] PyCon 2012 Namespace Package discussion outcome
|
2012-04-19 16:16:16 -04:00
|
|
|
|
(http://mail.python.org/pipermail/import-sig/2012-March/000421.html)
|
|
|
|
|
|
2012-05-14 10:45:28 -04:00
|
|
|
|
.. [4] Nick Coghlan's objection to the lack of marker files or directories
|
2012-04-19 16:16:16 -04:00
|
|
|
|
(http://mail.python.org/pipermail/import-sig/2012-March/000423.html)
|
|
|
|
|
|
2012-05-14 10:45:28 -04:00
|
|
|
|
.. [5] Nick Coghlan's response to his initial objections
|
2012-05-01 12:37:58 -04:00
|
|
|
|
(http://mail.python.org/pipermail/import-sig/2012-April/000464.html)
|
|
|
|
|
|
2012-05-17 06:08:31 -04:00
|
|
|
|
.. [6] Martin v. Löwis's suggestion to make ``encodings`` a namespace
|
|
|
|
|
package
|
|
|
|
|
(http://mail.python.org/pipermail/import-sig/2012-May/000540.html)
|
|
|
|
|
|
|
|
|
|
.. [7] Use case for multiple portions per ``find_loader`` call
|
2012-05-09 20:16:09 -04:00
|
|
|
|
(http://mail.python.org/pipermail/import-sig/2012-May/000585.html)
|
|
|
|
|
|
2012-04-19 16:16:16 -04:00
|
|
|
|
Copyright
|
|
|
|
|
=========
|
|
|
|
|
|
|
|
|
|
This document has been placed in the public domain.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
..
|
|
|
|
|
Local Variables:
|
|
|
|
|
mode: indented-text
|
|
|
|
|
indent-tabs-mode: nil
|
|
|
|
|
sentence-end-double-space: t
|
|
|
|
|
fill-column: 70
|
|
|
|
|
coding: utf-8
|
|
|
|
|
End:
|