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 christian.heimes
Recipients christian.heimes, saurabhgupta2u
Date 2013-07-22.07:52:26
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1374479546.38.0.326254945916.issue18525@psf.upfronthosting.co.za>
In-reply-to
Content
Seems legit ... I don't have access to a Windows system right now so I can't test it.

WindowsError is globally available on Windows. You don't have to import it from shutil. Portable application should use OSError instead of WindowsError. WindowsError is a subclass of OSError with a Windows specific extra field. "try: ... except OSError: ..." catches WindowsError, too.
History
Date User Action Args
2013-07-22 07:52:26christian.heimessetrecipients: + christian.heimes, saurabhgupta2u
2013-07-22 07:52:26christian.heimessetmessageid: <1374479546.38.0.326254945916.issue18525@psf.upfronthosting.co.za>
2013-07-22 07:52:26christian.heimeslinkissue18525 messages
2013-07-22 07:52:26christian.heimescreate