Issue 25105: Docs 3.x buildbot: ":root" found in ... (original) (raw)

Issue25105

Created on 2015-09-14 06:54 by vstinner, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (4)
msg250637 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2015-09-14 06:54
It looks like the changeset 34f941df3476 introduced a bug: http://buildbot.python.org/all/builders/Docs%203.x/builds/86/steps/suspicious/logs/stdio writing output... [ 99%] whatsnew/3.5 WARNING: [whatsnew/3.5:924] ":root" found in "'WARNING:root:warning\n'" WARNING: [whatsnew/3.5:924] ":warning" found in "'WARNING:root:warning\n'" WARNING: [whatsnew/3.5:1244] "::" found in ">>> addr6 = ipaddress.IPv6Address('::1')"
msg250638 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2015-09-14 07:02
It looks like a bug in the "suspicious" tool which should skip preformatted blocks (blocks starting with "::"). +don't provide any options to redirect it:: + + >>> import contextlib, io, logging + >>> f = io.StringIO() + >>> with contextlib.redirect_stderr(f): + ... logging.warning('warning') + ... + >>> f.getvalue() + 'WARNING:root:warning\n' + +(Contributed by Berker Peksag in :issue:`22389`.)
msg250781 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2015-09-15 16:43
New changeset 953a14984aec by Berker Peksag in branch '3.5': Issue #25105: Update susp-ignored.csv to avoid false positives https://hg.python.org/cpython/rev/953a14984aec New changeset efdbe17a9208 by Berker Peksag in branch 'default': Issue #25105: Update susp-ignored.csv to avoid false positives https://hg.python.org/cpython/rev/efdbe17a9208
msg250783 - (view) Author: Berker Peksag (berker.peksag) * (Python committer) Date: 2015-09-15 16:56
Looks happy now: http://buildbot.python.org/all/builders/Docs%203.x/builds/104 Thanks for the report, Victor.
History
Date User Action Args
2022-04-11 14:58:20 admin set github: 69292
2015-09-15 16:56:41 berker.peksag set status: open -> closednosy: + berker.peksagmessages: + resolution: fixedstage: resolved
2015-09-15 16:43:43 python-dev set nosy: + python-devmessages: +
2015-09-14 07:02:07 vstinner set messages: +
2015-09-14 07:01:28 vstinner set title: Docs 3.x buildbot: -> Docs 3.x buildbot: ":root" found in ...
2015-09-14 06:54:48 vstinner create