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: Docs 3.x buildbot: ":root" found in ...
Type: Stage: resolved
Components: Documentation Versions: Python 3.6, Python 3.5
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: berker.peksag, docs@python, python-dev, vstinner, yselivanov
Priority: normal Keywords:

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:20adminsetgithub: 69292
2015-09-15 16:56:41berker.peksagsetstatus: open -> closed

nosy: + berker.peksag
messages: + msg250783

resolution: fixed
stage: resolved
2015-09-15 16:43:43python-devsetnosy: + python-dev
messages: + msg250781
2015-09-14 07:02:07vstinnersetmessages: + msg250638
2015-09-14 07:01:28vstinnersettitle: Docs 3.x buildbot: -> Docs 3.x buildbot: ":root" found in ...
2015-09-14 06:54:48vstinnercreate