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 suresh
Recipients eryksun, paul.moore, steve.dower, suresh, tim.golden, zach.ware
Date 2021-02-19.10:29:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1613730584.29.0.543254427201.issue43175@roundup.psfhosted.org>
In-reply-to
Content
I am getting same file size and are regular files (True) as below.

Could you assist on filecmp any changes required in passing the inputs. Since it returns false.

Code: 

>>> os.chdir(r'C:\Users\suresh.n\Files')
>>> open('source.css', 'rb').read() == open('destination.css','rb').read()
True
>>> for f in ('source.css', 'destination.css'):
...         print(f, os.path.isfile(f), os.path.getsize(f))

source.css True 37465
destination.css True 37465
History
Date User Action Args
2021-02-19 10:29:44sureshsetrecipients: + suresh, paul.moore, tim.golden, zach.ware, eryksun, steve.dower
2021-02-19 10:29:44sureshsetmessageid: <1613730584.29.0.543254427201.issue43175@roundup.psfhosted.org>
2021-02-19 10:29:44sureshlinkissue43175 messages
2021-02-19 10:29:44sureshcreate