[issue37984] Unable parse csv on latin iso or binary mode

Raymond Hettinger report at bugs.python.org
Thu Aug 29 18:26:57 EDT 2019


Raymond Hettinger <raymond.hettinger at gmail.com> added the comment:

Try passing an "encoding" argument to open():

with open('./exported.csv', newline='', encoding='latin-1') as csvFileHandler:
   ...

----------
nosy: +rhettinger

_______________________________________
Python tracker <report at bugs.python.org>
<https://bugs.python.org/issue37984>
_______________________________________


More information about the Python-bugs-list mailing list