Fix-up the XXX for importlib.abc.

This commit is contained in:
Raymond Hettinger 2011-01-17 21:55:40 +00:00
parent 4854d14f55
commit 1dcc84e43b

View file

@ -326,10 +326,12 @@ aspects that are visible to the programmer:
* The :mod:`py_compile` and :mod:`compileall` modules have been updated to * The :mod:`py_compile` and :mod:`compileall` modules have been updated to
reflect the new naming convention and target directory. reflect the new naming convention and target directory.
* XXX The :mod:`importlib.abc` module has been updated with new ABCs that * The :mod:`importlib.abc` module has been updated with new :term:`abstract base
abstract out bytecode file details; some other ABCs in the module are now classes <abstract base class>` for the loading bytecode files. The now
deprecated in favor for the new ABCs (instructions on how to stay obsolete ABCS, :class:`~importlib.abc.PyLoader` and
backwards-compatible with Python 3.1 are included with the documentation). :class:`~importlib.abc.PyPycLoader`, have been deprecated (instructions on how
to stay backwards-compatible with Python 3.1 are included with the
documentation).
.. seealso:: .. seealso::