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 eryksun
Recipients brett.cannon, eryksun, ethan.furman, paul.moore, serhiy.storchaka, steve.dower, tim.golden, zach.ware
Date 2016-06-03.01:36:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1464917768.07.0.74753238066.issue27184@psf.upfronthosting.co.za>
In-reply-to
Content
nt is the module name for posixmodule.c on Windows, so I'm changing the title to reference ntpath instead. 

Regarding nt, two of its built-in functions are exposed directly in ntpath. _isdir is imported as isdir, so it needs a wrapper to support __fspath__. Only pathlib uses _getfinalpathname, so for now I think it can be handled there. There's also nt._getdiskusage, which is only used by shutil.disk_usage. For some reason the PEP doesn't mention updating shutil to support __fspath__.
History
Date User Action Args
2016-06-03 01:36:08eryksunsetrecipients: + eryksun, brett.cannon, paul.moore, tim.golden, ethan.furman, zach.ware, serhiy.storchaka, steve.dower
2016-06-03 01:36:08eryksunsetmessageid: <1464917768.07.0.74753238066.issue27184@psf.upfronthosting.co.za>
2016-06-03 01:36:08eryksunlinkissue27184 messages
2016-06-03 01:36:07eryksuncreate