Message7029

Author amak
Recipients amak, mansion
Date 2012-04-06.18:44:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1333737854.05.0.332702078764.issue1872@psf.upfronthosting.co.za>
In-reply-to
Content
The shutil module that jython uses is copied from cpython, i.e. we don't have a specialised version of it for jython.

Interestingly, the following section appears in the copytree function

####

    try:
        copystat(src, dst)
    except OSError, why:
        if WindowsError is not None and isinstance(why, WindowsError):
            # Copying file access times may fail on Windows
            pass
        else:
            errors.extend((src, dst, str(why)))


###

And if I comment out those lines, the error no longer appears, i.e. the copytree works correctly, and no errors are reported.

So, now to decide what is the best fix for this.
History
Date User Action Args
2012-04-06 18:44:14amaksetmessageid: <1333737854.05.0.332702078764.issue1872@psf.upfronthosting.co.za>
2012-04-06 18:44:14amaksetrecipients: + amak, mansion
2012-04-06 18:44:14amaklinkissue1872 messages
2012-04-06 18:44:13amakcreate