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 ianare
Recipients amaury.forgeotdarc, christian.heimes, draghuram, facundobatista, gvanrossum, ianare
Date 2007-12-04.17:12:21
SpamBayes Score 0.25789154
Marked as misclassified No
Message-id <1196788341.55.0.481268628679.issue1545@psf.upfronthosting.co.za>
In-reply-to
Content
sorry, should have clarified, I tested with this code:

copy2

try:
    copystat(src, dst)
except OSError, err:
    if WindowsError is not None and isinstance(err, WindowsError):
        pass
    else:
        raise

copytree

try:
    copystat(src, dst)
except OSError, err:
    if WindowsError is not None and isinstance(err, WindowsError):
        pass
    else:
        errors.extend((src, dst, str(why)))
History
Date User Action Args
2007-12-04 17:12:21ianaresetspambayes_score: 0.257892 -> 0.25789154
recipients: + ianare, gvanrossum, facundobatista, amaury.forgeotdarc, draghuram, christian.heimes
2007-12-04 17:12:21ianaresetspambayes_score: 0.257892 -> 0.257892
messageid: <1196788341.55.0.481268628679.issue1545@psf.upfronthosting.co.za>
2007-12-04 17:12:21ianarelinkissue1545 messages
2007-12-04 17:12:21ianarecreate