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: Add quiet and detailed verbosity levels to build.bat
Type: enhancement Stage: resolved
Components: Windows Versions: Python 3.9, Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: anthonypjshaw, miss-islington, paul.moore, steve.dower, tim.golden, zach.ware
Priority: normal Keywords: patch

Created on 2020-01-02 01:09 by anthonypjshaw, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 17791 merged anthonypjshaw, 2020-01-02 01:10
PR 18354 merged miss-islington, 2020-02-05 00:30
PR 18355 merged miss-islington, 2020-02-05 00:30
Messages (5)
msg359178 - (view) Author: anthony shaw (anthonypjshaw) * (Python triager) Date: 2020-01-02 01:09
The build.bat script (windows build) has a flag for verbose, which sets the msbuild verbosity level to normal.
The default level is minimal.

The quiet and detailed levels would also be useful for development.
msg361389 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2020-02-05 00:30
New changeset 89ae20b30e4543f379ee647c965eb46200556496 by Anthony Shaw in branch 'master':
bpo-39185 Add the d[etailed] and q[uiet] verbosity levels for msbuild (GH-17791)
https://github.com/python/cpython/commit/89ae20b30e4543f379ee647c965eb46200556496
msg361390 - (view) Author: Steve Dower (steve.dower) * (Python committer) Date: 2020-02-05 00:31
Thanks! Nice change
msg361395 - (view) Author: miss-islington (miss-islington) Date: 2020-02-05 00:47
New changeset 6ba8dc6aae6fa0a7e29ba4ac18227beb38872392 by Miss Islington (bot) in branch '3.7':
bpo-39185 Add the d[etailed] and q[uiet] verbosity levels for msbuild (GH-17791)
https://github.com/python/cpython/commit/6ba8dc6aae6fa0a7e29ba4ac18227beb38872392
msg361396 - (view) Author: miss-islington (miss-islington) Date: 2020-02-05 00:48
New changeset 6470a7643018b357adcd88f77ae2a196f41cb351 by Miss Islington (bot) in branch '3.8':
bpo-39185 Add the d[etailed] and q[uiet] verbosity levels for msbuild (GH-17791)
https://github.com/python/cpython/commit/6470a7643018b357adcd88f77ae2a196f41cb351
History
Date User Action Args
2022-04-11 14:59:24adminsetgithub: 83366
2020-02-05 00:48:05miss-islingtonsetmessages: + msg361396
2020-02-05 00:47:22miss-islingtonsetnosy: + miss-islington
messages: + msg361395
2020-02-05 00:31:34steve.dowersetstatus: open -> closed
versions: + Python 3.7, Python 3.8, Python 3.9
messages: + msg361390

resolution: fixed
stage: patch review -> resolved
2020-02-05 00:30:53miss-islingtonsetpull_requests: + pull_request17730
2020-02-05 00:30:33miss-islingtonsetpull_requests: + pull_request17729
2020-02-05 00:30:24steve.dowersetmessages: + msg361389
2020-01-02 01:10:19anthonypjshawsetkeywords: + patch
stage: patch review
pull_requests: + pull_request17224
2020-01-02 01:09:37anthonypjshawcreate