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.

Author martin.panter
Recipients Jim Fasarakis-Hilliard, db3l, docs@python, martin.panter, ned.deily, python-dev
Date 2017-01-29.21:33:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1485725592.73.0.186929268257.issue29349@psf.upfronthosting.co.za>
In-reply-to
Content
Thanks Ned. Do you know what version of Python Sphinx uses (which runs patchlevel.py)?

According to Issue 28039, David set up Python 2.7 so that “make touch” would work. But the log also uses a python2.5 command, and apparently Python 2.3 also installed on that buildbot.

If we can rely on 2.6+, we just need to add “from __future__ import print_function”. Otherwise, we may need something like

if sys.stderr is not None:
    sys.stderr.write(...)

and also do something about that “with” statement.
History
Date User Action Args
2017-01-29 21:33:12martin.pantersetrecipients: + martin.panter, db3l, ned.deily, docs@python, python-dev, Jim Fasarakis-Hilliard
2017-01-29 21:33:12martin.pantersetmessageid: <1485725592.73.0.186929268257.issue29349@psf.upfronthosting.co.za>
2017-01-29 21:33:12martin.panterlinkissue29349 messages
2017-01-29 21:33:12martin.pantercreate