Vajrasky Kok added the comment:
Apparently, other attributes of the csv dialect beside delimiter, such as
escapechar and quotechar share the same problem.
>>> import _csv
>>> _csv.reader('foo', quotechar=b'"')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: quotechar must be set if quoting enabled
>>> _csv.reader('foo', escapechar=b'+')
<_csv.reader object at 0x7fa85d7847d0>Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: bad argument type for built-in operation
My patch already fixed the problem, only lacked the unit test. But since this
ticket is about delimiter, I'll create the unit test for quotechar and
escapechar in separate ticket after this ticket has been closed.
----------
_______________________________________
Python tracker <[email protected]>
<http://bugs.python.org/issue18829>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com