This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: shutil.make_archive() doesn't use its "verbose" argument
Type: Stage: resolved
Components: Library (Lib) Versions: Python 3.4, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: akuchling, berker.peksag, georg.brandl, python-dev
Priority: normal Keywords:

Created on 2014-10-31 08:54 by georg.brandl, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (4)
msg230324 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2014-10-31 08:54
It seems like "verbose" should be passed to the archival function, but it isn't.
msg230329 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2014-10-31 09:51
"verbose" was used by _call_external_zip() (see https://hg.python.org/cpython/rev/a1d078b88247#l3.143), and _call_external_zip() was removed in issue 20744 (see https://hg.python.org/cpython/rev/681e20f8b717).

Perhaps we can deprecate "version" arguments of make_archive and _make_* functions.
msg230330 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2014-10-31 09:52
That makes sense.
msg230331 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-10-31 09:54
New changeset 335ff0c6d879 by Georg Brandl in branch '3.4':
Closes #22771: "verbose" is unused; deprecate it.
https://hg.python.org/cpython/rev/335ff0c6d879
History
Date User Action Args
2022-04-11 14:58:09adminsetgithub: 66960
2014-10-31 09:54:25python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg230331

resolution: fixed
stage: resolved
2014-10-31 09:52:35georg.brandlsetmessages: + msg230330
2014-10-31 09:51:12berker.peksagsetnosy: + akuchling, berker.peksag
messages: + msg230329
2014-10-31 08:54:21georg.brandlcreate