]> granicus.if.org Git - python/commitdiff
whatsnew: ExtensionFileLoader.get_filename.
authorR David Murray <rdmurray@bitdance.com>
Sun, 23 Feb 2014 14:41:27 +0000 (09:41 -0500)
committerR David Murray <rdmurray@bitdance.com>
Sun, 23 Feb 2014 14:41:27 +0000 (09:41 -0500)
Also reflow mmap paragraph.

Doc/whatsnew/3.4.rst

index e5b79b348236f36ec48d237a5f8be8102e72ad2b..461a8b8cd109cc6f2b351a19ee51db3bb6e26825 100644 (file)
@@ -828,6 +828,11 @@ by Brett Cannon in :issue:`18058`.)
 that decodes source from bytes using universal newline processing.  This is
 useful for implementing :meth:`.InspectLoader.get_source` methods.
 
+:class:`importlib.machinery.ExtensionFileLoader` now has a
+:meth:`~importlib.machinery.ExtensionFileLoader.get_filename` method.  This was
+inadvertently omitted in the original implementation.  (Contributed by Eric
+Snow in :issue:`19152`.)
+
 
 inspect
 -------
@@ -895,8 +900,8 @@ memory a module occupies in memory when it is loaded from a ``.pyc`` (or
 mmap
 ----
 
-mmap objects can now be weakref'ed.
-(Contributed by Valerie Lambert in :issue:`4885`.)
+mmap objects can now be weakref'ed.  (Contributed by Valerie Lambert in
+:issue:`4885`.)
 
 
 mock