summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2014-07-16 20:58:58 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2014-07-16 20:58:58 (GMT)
commit2c6a3aedeb47ce763454f936545b6dddabbe29cb (patch)
tree85c8b05cf6ef10c7dfd6057d8968190f1c993ec5 /Misc
parent8faecbfb425747130061e89eb619cb6dcdfa1c49 (diff)
downloadcpython-2c6a3aedeb47ce763454f936545b6dddabbe29cb.zip
cpython-2c6a3aedeb47ce763454f936545b6dddabbe29cb.tar.gz
cpython-2c6a3aedeb47ce763454f936545b6dddabbe29cb.tar.bz2
Issue 21044: tarfile.open() now handles fileobj with an integer 'name'
attribute. Based on patch by Martin Panter.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 0c48477..0b55767 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -996,6 +996,7 @@ Mike Pall
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 @@ Core and Builtins
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.