I have two files in the Q:\lib directory: Q:\lib>dir 2007/03/11 AM 08:02 5,260 lib_MARK.so 2007/03/11 AM 08:02 4,584 lib_mark.so
Under Python 3.4.4 I got:
>>> f = open('lib_MARK.so', 'br')
>>> data = f.read()
>>> f.close()
>>> len(data)
4584
I know Windows won't, but can Python make it true?
--Jach
--
https://mail.python.org/mailman/listinfo/python-list
