This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author shday
Recipients
Date 2006-11-19.01:47:13
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
The following from an interactive session failed instead of just returning the '\x00':

>>> r = csv.reader(['a,line,with,a,null,\x00,byte'])
>>> r.next()

Traceback (most recent call last):
  File "<pyshell#31>", line 1, in -toplevel-
    r.next()
Error: string with NUL bytes
>>> 
History
Date User Action Args
2007-08-23 14:49:59adminlinkissue1599055 messages
2007-08-23 14:49:59admincreate