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, ianare
Date 2007-12-03.12:35:07
SpamBayes Score 0.03515843
Marked as misclassified No
Message-id <1196685308.08.0.656388598012.issue1545@psf.upfronthosting.co.za>
In-reply-to
Content
Better patch:

import errno

try:
    copystat(src, dst)
except OSError, err:
    # can't change stats on NTFS partition even if
    # OS supports it
    if err.errno != errno.EPERM:
        raise
History
Date User Action Args
2007-12-03 12:35:08christian.heimessetspambayes_score: 0.0351584 -> 0.03515843
recipients: + christian.heimes, ianare
2007-12-03 12:35:08christian.heimessetspambayes_score: 0.0351584 -> 0.0351584
messageid: <1196685308.08.0.656388598012.issue1545@psf.upfronthosting.co.za>
2007-12-03 12:35:08christian.heimeslinkissue1545 messages
2007-12-03 12:35:07christian.heimescreate