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 brian.curtin
Recipients brian.curtin, pitrou, tim.golden, vajrasky
Date 2013-11-27.15:15:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1385565305.39.0.0825790871218.issue19792@psf.upfronthosting.co.za>
In-reply-to
Content
If a platform does not actually support symlinks, and XP does not actually support symlinks for any usual definition of an operating system supporting a feature, then I'm not sure why pathlib is doing something wrong to make it work more reasonably in that case.

"os.symlink" is a NotImplementedError on Windows versions prior to Vista because the Windows API doesn't support CreateSymbolicLink. It doesn't make sense to just let the code try to run for all versions on all platforms but be wrapped in a try/catch block for the NotImplementedError.
History
Date User Action Args
2013-11-27 15:15:05brian.curtinsetrecipients: + brian.curtin, pitrou, tim.golden, vajrasky
2013-11-27 15:15:05brian.curtinsetmessageid: <1385565305.39.0.0825790871218.issue19792@psf.upfronthosting.co.za>
2013-11-27 15:15:05brian.curtinlinkissue19792 messages
2013-11-27 15:15:05brian.curtincreate