ianaré added the comment:

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)))

__________________________________
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1545>
__________________________________
_______________________________________________
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to