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 eric.smith
Recipients Colin David Chen, eric.smith
Date 2016-12-14.22:19:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1481753992.47.0.489002173072.issue28975@psf.upfronthosting.co.za>
In-reply-to
Content
Assuming Path is pathlib.Path, this is equivalent to the difference between:

>>> list(os.walk('/tmp'))
[('/tmp', <other-stuff ...>

and:
>>> list(os.walk('/tmp/'))
[('/tmp/', <other-stuff ...> 

Because:
>>> pathlib.Path('/tmp')
PosixPath('/tmp')
>>> pathlib.Path('/tmp/')
PosixPath('/tmp')
History
Date User Action Args
2016-12-14 22:19:52eric.smithsetrecipients: + eric.smith, Colin David Chen
2016-12-14 22:19:52eric.smithsetmessageid: <1481753992.47.0.489002173072.issue28975@psf.upfronthosting.co.za>
2016-12-14 22:19:52eric.smithlinkissue28975 messages
2016-12-14 22:19:52eric.smithcreate