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: print sys.thread_info in regrtest header
Type: Stage: resolved
Components: Tests Versions: Python 3.8, Python 3.7, Python 3.6
process
Status: closed Resolution: rejected
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, vstinner
Priority: normal Keywords: patch

Created on 2018-09-12 19:08 by benjamin.peterson, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 9221 closed benjamin.peterson, 2018-09-12 19:09
Messages (3)
msg325170 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2018-09-12 19:08
It might be useful to see the thread implementation info in the header.
msg325173 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2018-09-12 19:28
Actually, this is already in "make pythoninfo", which is enough, I think.
msg325237 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2018-09-13 06:32
> Actually, this is already in "make pythoninfo", which is enough, I think.

Yeah, whenever possible, I try to avoid to "pollute" the regrtest header. In the past, we added more and more info, and at the end, the header became "giant" for no good reason. That's why I created pythoninfo which should now run on all CI (Travis CI, AppVeyor, buildbots, I don't know for VSTS).

I was going to suggest you to extend pythoninfo to log sys.thread_info, but you just wrote that it's already there. Good :-D
History
Date User Action Args
2022-04-11 14:59:05adminsetgithub: 78828
2018-09-13 06:32:59vstinnersetnosy: + vstinner
messages: + msg325237
2018-09-12 19:28:18benjamin.petersonsetstatus: open -> closed
resolution: rejected
messages: + msg325173

stage: patch review -> resolved
2018-09-12 19:09:30benjamin.petersonsetkeywords: + patch
stage: patch review
pull_requests: + pull_request8652
2018-09-12 19:08:22benjamin.petersoncreate