Message387301
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 |
|
Date |
User |
Action |
Args |
2021-02-19 10:29:44 | suresh | set | recipients:
+ suresh, paul.moore, tim.golden, zach.ware, eryksun, steve.dower |
2021-02-19 10:29:44 | suresh | set | messageid: <1613730584.29.0.543254427201.issue43175@roundup.psfhosted.org> |
2021-02-19 10:29:44 | suresh | link | issue43175 messages |
2021-02-19 10:29:44 | suresh | create | |
|