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 larry
Recipients brett.cannon, eric.snow, larry, ncoghlan, python-dev, raulcd
Date 2015-05-04.13:55:45
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1430747745.92.0.282076701018.issue23911@psf.upfronthosting.co.za>
In-reply-to
Content
This checkin broke the buildbots.  If you build trunk then run

./python -bb -m test test_site

the test fails.  "-bb" is used by the normal test runner ("make test").

The problem is in the lines

        self.assertTrue(os.path.isabs(os__file__),
                        "expected absolute path, got {}".format(os__file__))
        self.assertTrue(os.path.isabs(os__cached__),
                        "expected absolute path, got {}".format(os__cached__))

os__file__ and os__cached__ are bytes but you're passing them into .format() on a str.
History
Date User Action Args
2015-05-04 13:55:46larrysetrecipients: + larry, brett.cannon, ncoghlan, python-dev, eric.snow, raulcd
2015-05-04 13:55:45larrysetmessageid: <1430747745.92.0.282076701018.issue23911@psf.upfronthosting.co.za>
2015-05-04 13:55:45larrylinkissue23911 messages
2015-05-04 13:55:45larrycreate