]> granicus.if.org Git - python/commitdiff
Merge #14399: corrected news item
authorR David Murray <rdmurray@bitdance.com>
Sat, 14 Apr 2012 01:27:19 +0000 (21:27 -0400)
committerR David Murray <rdmurray@bitdance.com>
Sat, 14 Apr 2012 01:27:19 +0000 (21:27 -0400)
1  2 
Misc/NEWS

diff --cc Misc/NEWS
index a34f2bf63100c0c330834ded5969371813ae795e,69dd691b6c752e66e031448b5adbecb6c5b0abdc..91d5a40ab6e38050ba6db6bba9a79c982a22d605
+++ b/Misc/NEWS
@@@ -23,21 -19,31 +23,21 @@@ Core and Builtin
  Library
  -------
  
- - Issue #14399: zipfile now correctly adds a comment even when the zipfile
-   being created is otherwise empty.  In addition, the TypeError that results
-   from trying to set a non-binary value as a comment is now now raised at the
-   time the comment is set rather than at the time the zipfile is written.
 +- Have importlib take advantage of ImportError's new 'name' and 'path'
 +  attributes.
 +
+ - Issue #14399: zipfile now recognizes that the archive has been modified even
+   if only the comment is changed.  In addition, the TypeError that results from
+   trying to set a non-binary value as a comment is now now raised at the time
+   the comment is set rather than at the time the zipfile is written.
  
 +- trace.CoverageResults.is_ignored_filename() now ignores any name that starts
 +  with "<" and ends with ">" instead of special-casing "<string>" and
 +  "<doctest ".
 +
 +- Issue #12537: The mailbox module no longer depends on knowledge of internal
 +  implementation details of the email package Message object.
 +
  - Issue #7978: socketserver now restarts the select() call when EINTR is
    returned.  This avoids crashing the server loop when a signal is received.
    Patch by Jerzy Kozera.