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 guettli
Recipients
Date 2007-03-22.22:04:36
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Hi,

I think the csv module misses an example for the
nice sniff method:

import csv
dialect=csv.Sniffer().sniff(open(csvfile).read(1024))
fd=open(csvfile)
for row in csv.reader(fd, dialect):
    for col in row:
        print col,
    print
History
Date User Action Args
2007-08-23 16:12:39adminlinkissue1686390 messages
2007-08-23 16:12:39admincreate