[issue22640] Add silent mode for py_compile

2020-04-30 Thread STINNER Victor
STINNER Victor added the comment: It seems like this change introduced a regression in main(): see https://bugs.python.org/issue40456 -- nosy: +vstinner ___ Python tracker __

[issue22640] Add silent mode for py_compile

2019-12-27 Thread Batuhan
Change by Batuhan : -- pull_requests: +17165 pull_request: https://github.com/python/cpython/pull/17719 ___ Python tracker ___ ___ P

[issue22640] Add silent mode for py_compile

2019-12-02 Thread Gregory Shevchenko
Change by Gregory Shevchenko : -- pull_requests: +16921 pull_request: https://github.com/python/cpython/pull/17134 ___ Python tracker ___ __

[issue22640] Add silent mode for py_compile

2019-11-16 Thread Joannah Nanjekye
Joannah Nanjekye added the comment: Am in favor of opening a separate ticket for this. Thanks -- ___ Python tracker ___ ___ Python-

[issue22640] Add silent mode for py_compile

2019-11-16 Thread Éric Araujo
Éric Araujo added the comment: Internal functions got the parameter added, but not the command-line interface. Should this be reopened, or a different ticket? (I think only remove the NameError in 3.8, but complete the feature in 3.9) -- nosy: +eric.araujo _

[issue22640] Add silent mode for py_compile

2019-05-28 Thread Berker Peksag
Change by Berker Peksag : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8 -Python 3.5 ___ Python tracker ___ _

[issue22640] Add silent mode for py_compile

2019-05-28 Thread Berker Peksag
Berker Peksag added the comment: New changeset 2e33ecd7c9b0cac3efc6fcbdd4547fd086b4e2d1 by Berker Peksag (Joannah Nanjekye) in branch 'master': bpo-22640: Add silent mode to py_compile.compile() (GH-12976) https://github.com/python/cpython/commit/2e33ecd7c9b0cac3efc6fcbdd4547fd086b4e2d1 ---

[issue22640] Add silent mode for py_compile

2019-05-06 Thread Brett Cannon
Brett Cannon added the comment: I don't see anything wrong with the idea. -- ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue22640] Add silent mode for py_compile

2019-04-27 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- nosy: +nanjekyejoannah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue22640] Add silent mode for py_compile

2019-04-27 Thread Joannah Nanjekye
Change by Joannah Nanjekye : -- keywords: +patch pull_requests: +12902 stage: needs patch -> patch review ___ Python tracker ___ ___

[issue22640] Add silent mode for py_compile

2019-04-27 Thread Berker Peksag
Change by Berker Peksag : -- nosy: +brett.cannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue22640] Add silent mode for py_compile

2014-10-15 Thread Berker Peksag
New submission from Berker Peksag: This is similar to issue 21338. It would be good to add a new option "-q" to the CLI interface and add a new parameter "quiet" to py_compile.compile() (e.g. if doraise is False and quiet is True, do not print anything). -- assignee: berker.peksag com