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 serhiy.storchaka
Recipients benhoyt, paul.moore, serhiy.storchaka, steve.dower, tim.golden, vstinner, zach.ware
Date 2016-09-07.08:21:10
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1473236470.81.0.837469962495.issue27998@psf.upfronthosting.co.za>
In-reply-to
Content
Bytes paths are deprecated on Windows and their support was not added in os.scandir() for purpose. But this makes harder converting filesystem walking functions to use os.scandir(). We have to add a special case for bytes paths on Windows in every such function (os.walk(), glob.iglob()). This is cumbersome inefficient and errorprone code that slows down common case due to additional checks for special case. It would be better to add a support of bytes paths directly in os.scandir().
History
Date User Action Args
2016-09-07 08:21:10serhiy.storchakasetrecipients: + serhiy.storchaka, paul.moore, vstinner, tim.golden, benhoyt, zach.ware, steve.dower
2016-09-07 08:21:10serhiy.storchakasetmessageid: <1473236470.81.0.837469962495.issue27998@psf.upfronthosting.co.za>
2016-09-07 08:21:10serhiy.storchakalinkissue27998 messages
2016-09-07 08:21:10serhiy.storchakacreate