[issue22771] shutil.make_archive() doesn't use its "verbose" argument

2014-10-31 Thread Roundup Robot
Roundup Robot added the comment: New changeset 335ff0c6d879 by Georg Brandl in branch '3.4': Closes #22771: "verbose" is unused; deprecate it. https://hg.python.org/cpython/rev/335ff0c6d879 -- nosy: +python-dev resolution: -> fixed stage: -> resolved status: open -> closed ___

[issue22771] shutil.make_archive() doesn't use its "verbose" argument

2014-10-31 Thread Georg Brandl
Georg Brandl added the comment: That makes sense. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue22771] shutil.make_archive() doesn't use its "verbose" argument

2014-10-31 Thread Berker Peksag
Berker Peksag added the comment: "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 ma

[issue22771] shutil.make_archive() doesn't use its "verbose" argument

2014-10-31 Thread Georg Brandl
New submission from Georg Brandl: It seems like "verbose" should be passed to the archival function, but it isn't. -- components: Library (Lib) messages: 230324 nosy: georg.brandl priority: normal severity: normal status: open title: shutil.make_archive() doesn't use its "verbose" argume