Antoon Pardon added the comment:
I included a patch (against 2.7) that seems to make the test work.
The patch prohibits the delim group to match a space.
--
___
Python tracker
<http://bugs.python.org/issue17
Antoon Pardon added the comment:
I had a look at this and have the following remarks.
1) the file csv_sniffing_excel_tab.py no longer works with python 3.3. It now
produces the folowing traceback:
Traceback (most recent call last):
File "csv_sniffing_excel_tab.py", l
Antoon Pardon added the comment:
I think one could argue for allowing mode "r+" instead of "wb". Because "w"
suggest truncation, which doesn't make sense on sockets either.
But in the end I agree that allowing 'r', 'w',
New submission from Antoon Pardon:
The documentation of socket.makefile states that its arguments are interpreted
the same way as by the built-in open() function. However the mode argument of
socket.makefile only allows 'r', 'w' and 'b'.
That some options a