summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_csv.py
Commit message (Expand)AuthorAgeFilesLines
* #15927: Fix cvs.reader parsing of escaped \r\n with quoting off.R David Murray2013-03-201-0/+9
* Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-6/+6
* Issue #16145: Support legacy strings in the _csv module.Stefan Krah2012-11-021-0/+11
* Issue #16013: Fix CSV Reader parsing issue with ending quote characters. Patc...Senthil Kumaran2012-09-251-0/+9
* Fix wrong test code in test_csv (#10602)Éric Araujo2010-12-021-12/+7
* #5975: add unix_dialect to csv module.Georg Brandl2010-10-271-0/+9
* Issue #9308: Removed redundant coding cookies. Added tests forAlexander Belopolsky2010-10-151-1/+0
* Merged revisions 78018,78035-78040,78042-78043,78046,78048-78052,78054,78059,...Georg Brandl2010-03-141-2/+2
* Merged revisions 78384 via svnmerge fromR. David Murray2010-02-231-0/+4
* use assert[Not]In where appropriateBenjamin Peterson2010-01-191-1/+1
* Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,...Benjamin Peterson2009-10-041-1/+8
* convert old fail* assertions to assert*Benjamin Peterson2009-06-301-4/+4
* Update documentation for csv module to reflect changes in code,R. David Murray2009-04-041-1/+1
* Merged revisions 70997 via svnmerge fromR. David Murray2009-04-011-0/+13
* Merged revisions 65605 via svnmerge fromSkip Montanaro2008-08-091-0/+24
* #2621 rename test.test_support to test.supportBenjamin Peterson2008-05-201-3/+3
* Correct test_cvs on Windows, as suggested by Raghuram DevarakondaAmaury Forgeot d'Arc2007-11-191-2/+6
* Patch # 1033 by Adam Hupp:Guido van Rossum2007-08-281-26/+25
* Remove string.{letters,lowercase,uppercase}.Martin v. Löwis2007-08-141-1/+1
* SF patch# 1770008 by Christian Heimes (plus some extras).Guido van Rossum2007-08-091-1/+1
* SF patch# 1767398 by Adam Hupp.Guido van Rossum2007-08-061-174/+75
* Change a bunch of file encodings from Latin-1 to UTF-8.Guido van Rossum2007-07-161-8/+8
* Merged revisions 55007-55179 via svnmerge fromGuido van Rossum2007-05-071-4/+4
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-0/+4
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-18/+18
* Make readonly members defined in C throw an AttributeError on modification. T...Collin Winter2007-03-281-2/+2
* Fix most trivially-findable print statements.Guido van Rossum2007-02-091-1/+1
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-1/+4
* Fix a delimiter detection problem in sniffer. Sniffing "a|b|c\r\n" wasSkip Montanaro2005-12-301-0/+7
* Fix for problem with Sniffer class. If your delimiter is whitespace and theSkip Montanaro2005-12-281-1/+4
* Fix tests dependent on the exception raised by non-settable descriptors.Barry Warsaw2005-04-201-2/+3
* Whitespace normalization.Tim Peters2005-01-131-7/+7
* Add counting of source iterator lines to the reader object - handy forAndrew McNamara2005-01-121-1/+13
* When quoting=QUOTE_NONNUMERIC, the reader now casts unquoted fieldsAndrew McNamara2005-01-121-0/+6
* Fix logic problem in quoting=csv.QUOTE_ALL, quotechar=None check, add test.Andrew McNamara2005-01-121-0/+2
* When using QUOTE_NONNUMERIC, we now test for "numericness" withAndrew McNamara2005-01-121-10/+20
* Rename csv.set_field_limit to csv.field_size_limit (since it both sets andAndrew McNamara2005-01-121-7/+7
* Improve test coverage fractionally.Andrew McNamara2005-01-121-9/+23
* Set an upper limit on the size of the field buffer, raise an exceptionAndrew McNamara2005-01-111-2/+9
* Replace python-coded validation of csv dialect with a call to the CAndrew McNamara2005-01-111-4/+0
* No longer attempt to instantiate python classes describing dialects. ThisAndrew McNamara2005-01-111-18/+0
* Allow dialect-describing keywords to be supplied to register_dialect,Andrew McNamara2005-01-111-1/+10
* Fix parsing of csv files with escapes (escape character previously would beAndrew McNamara2005-01-101-2/+2
* Whitespace normalization.Tim Peters2005-01-071-1/+1
* Improved the implementation of the internal "dialect" type. The newAndrew McNamara2005-01-071-24/+99
* Whitespace normalization.Tim Peters2004-07-081-3/+3
* Rewrote to use temporary files instead of StringIO objects in most places.Skip Montanaro2004-06-051-113/+253
* Make the fieldnames argument optional in the DictReader. If self.fieldnamesSkip Montanaro2003-10-031-1/+10
* **kwds arg was missing from __init__ for Dict{Reader,Writer} classes.Skip Montanaro2003-09-061-0/+7
* add a couple test cases which involve longs and floats in 'e' format.Skip Montanaro2003-06-121-0/+23