Issue 21044: tarfile.open() now handles fileobj with an integer 'name'
attribute. Based on patch by Martin Panter.
diff --git a/Misc/ACKS b/Misc/ACKS
index 0c48477..0b55767 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -996,6 +996,7 @@
Todd R. Palmer
Juan David Ibáñez Palomar
Jan Palus
+Martin Panter
Mathias Panzenböck
M. Papillon
Peter Parente
diff --git a/Misc/NEWS b/Misc/NEWS
index d571578..86014e4 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,9 @@
Library
-------
+- Issue 21044: tarfile.open() now handles fileobj with an integer 'name'
+ attribute. Based on patch by Martin Panter.
+
- Issue #19076: Don't pass the redundant 'file' argument to self.error().
- Issue #21942: Fixed source file viewing in pydoc's server mode on Windows.