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 JelleZijlstra
Recipients JelleZijlstra, ethan.furman
Date 2016-06-05.16:58:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1465145885.45.0.563591962736.issue27232@psf.upfronthosting.co.za>
In-reply-to
Content
The current implementation of os.fspath() outputs something like this if you call os.fspath(0):

expected str, bytes or os.PathLike object, not <class 'int' at 0x10a3f3e50>

This patch changes the output to:

expected str, bytes or os.PathLike object, not int
History
Date User Action Args
2016-06-05 16:58:05JelleZijlstrasetrecipients: + JelleZijlstra, ethan.furman
2016-06-05 16:58:05JelleZijlstrasetmessageid: <1465145885.45.0.563591962736.issue27232@psf.upfronthosting.co.za>
2016-06-05 16:58:05JelleZijlstralinkissue27232 messages
2016-06-05 16:58:05JelleZijlstracreate