diff options
author | Raymond Hettinger <python@rcn.com> | 2011-01-26 20:34:14 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2011-01-26 20:34:14 (GMT) |
commit | a63a312a3f5a4f3b76617831e56ac9d295929fa0 (patch) | |
tree | 18504231f06733d800b5417cd6e0c4c0de6e8966 /Misc | |
parent | e3b8f7c0fa47bbf7c31a2912789e1618e129b539 (diff) | |
download | cpython-a63a312a3f5a4f3b76617831e56ac9d295929fa0.zip cpython-a63a312a3f5a4f3b76617831e56ac9d295929fa0.tar.gz cpython-a63a312a3f5a4f3b76617831e56ac9d295929fa0.tar.bz2 |
Issue #11014: Make 'filter' argument in tarfile.Tarfile.add() into a
keyword-only argument. The preceding positional argument was deprecated,
so it made no sense to add filter as a positional argument.
(Patch reviewed by Brian Curtin and Anthony Long.)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -16,6 +16,10 @@ Core and Builtins Library ------- +- Issue #11014: Make 'filter' argument in tarfile.Tarfile.add() into a + keyword-only argument. The preceding positional argument was deprecated, + so it made no sense to add filter as a positional argument. + - Issue #11004: Repaired edge case in deque.count(). - Issue #10974: IDLE no longer crashes if its recent files list includes files |