]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Correct issue #21044 patch author.
authorSerhiy Storchaka <storchaka@gmail.com>
Wed, 23 Jul 2014 15:42:09 +0000 (18:42 +0300)
committerSerhiy Storchaka <storchaka@gmail.com>
Wed, 23 Jul 2014 15:42:09 +0000 (18:42 +0300)
1  2 
Misc/ACKS
Misc/NEWS

diff --cc Misc/ACKS
Simple merge
diff --cc Misc/NEWS
index 8fb72eddd307317ceb3f9a2b00f511124279984e,2845d9f05dafbf86c9cd99a7acfbaabbae84a9d3..162bf4327fb443a538c0aad484faf6461a2345ef
+++ b/Misc/NEWS
@@@ -108,19 -27,10 +108,19 @@@ Core and Builtin
  Library
  -------
  
 +- Issue #22032: __qualname__ instead of __name__ is now always used to format
 +  fully qualified class names of Python implemented classes.
 +
 +- Issue #22031: Reprs now always use hexadecimal format with the "0x" prefix
 +  when contain an id in form " at 0x...".
 +
 +- Issue #22018: signal.set_wakeup_fd() now raises an OSError instead of a
 +  ValueError on ``fstat()`` failure.
 +
  - Issue #21044: tarfile.open() now handles fileobj with an integer 'name'
-   attribute.  Based on patch by Martin Panter.
+   attribute.  Based on patch by Antoine Pietri.
  
 -- Issue #21867:  Prevent turtle crash due to invalid undo buffer size.
 +- Issue #21966: Respect -q command-line option when code module is ran.
  
  - Issue #19076: Don't pass the redundant 'file' argument to self.error().