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 eryksun
Recipients eryksun, paul.moore, steve.dower, suresh, tim.golden, zach.ware
Date 2021-02-16.10:13:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1613470438.23.0.13578856902.issue43175@roundup.psfhosted.org>
In-reply-to
Content
The two files in "files.zip" have the same contents:

    >>> open('source.css', 'rb').read() == open('destination.css', 'rb').read()
    True

Maybe there's something peculiar about the stat results. Check that they're both reported as regular files with the same size:

    import os
    for f in ('source.css', 'destination.css'):
        print(f, os.path.isfile(f), os.path.getsize(f))
History
Date User Action Args
2021-02-16 10:13:58eryksunsetrecipients: + eryksun, paul.moore, tim.golden, zach.ware, steve.dower, suresh
2021-02-16 10:13:58eryksunsetmessageid: <1613470438.23.0.13578856902.issue43175@roundup.psfhosted.org>
2021-02-16 10:13:58eryksunlinkissue43175 messages
2021-02-16 10:13:57eryksuncreate