]> granicus.if.org Git - python/commitdiff
Fix-up the XXX for importlib.abc.
authorRaymond Hettinger <python@rcn.com>
Mon, 17 Jan 2011 21:55:40 +0000 (21:55 +0000)
committerRaymond Hettinger <python@rcn.com>
Mon, 17 Jan 2011 21:55:40 +0000 (21:55 +0000)
Doc/whatsnew/3.2.rst

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