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 goatsofmendez
Recipients
Date 2005-08-26.11:38:09
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=1309441

On my own system I've modified the testing code as follows

    if s1 != s2:
        return False

    if shallow and s1 == s2:
        return True

Which works as I expected it to work

If attributes aren't identical - Always fails
If the attributes are identical and it's in shallow mode - returns 
true
If the attributes are identical and it's not in shallow mode - 
goes on to check if the files are byte identical.

Whether there should be additional modes for finding byte 
identical files with different names, attributes etc. is another 
matter.
History
Date User Action Args
2007-08-23 14:32:59adminlinkissue1234674 messages
2007-08-23 14:32:59admincreate