summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_csv.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #18829: csv.Dialect() now checks type for delimiter, escapechar andSerhiy Storchaka2013-12-191-5/+39
* #19449: Handle non-string keys when generating 'fieldnames' error.R David Murray2013-11-191-0/+17
* Issue #18702: All skipped tests now reported as skipped.Serhiy Storchaka2013-11-031-72/+71
* #18155: Regex-escape delimiter, in case it is a regex special char.R David Murray2013-06-291-3/+39
* 2.7 : Issue #16013: Fix CSV Reader parsing issue with ending quote characters...Senthil Kumaran2012-09-251-0/+9
* Issue #13573: The csv.writer now uses the repr() for floats rather than str().Raymond Hettinger2011-12-121-2/+14
* Merged revisions 86940 via svnmerge fromÉric Araujo2010-12-021-12/+7
* Try to fix buildbot breakage from r78384.Dirkjan Ochtman2010-03-041-1/+2
* Fix #1537721: add writeheader() method to csv.DictWriter.Dirkjan Ochtman2010-02-231-0/+4
* Fix two redefined test methods.Georg Brandl2010-02-071-2/+2
* use assert[Not]In where appropriateEzio Melotti2010-01-231-1/+1
* Patch from Thomas Barr so that csv.Sniffer will set doublequote property.Skip Montanaro2009-09-281-1/+8
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-4/+4
* Add tests checking the CSV module's ability to handleR. David Murray2009-04-011-0/+18
* accept issue 3436Skip Montanaro2008-08-081-0/+33
* Issue #2432: give DictReader the dialect and line_num attributesGeorg Brandl2008-03-211-10/+12
* Sane humans would call these invalid tests, but Andrew McNamara pointed outSkip Montanaro2007-03-121-0/+4
* ("Forward-port" of r46506)Armin Rigo2006-05-281-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
* * Correct Sniffer doc to correspond to the implementation.Skip Montanaro2003-05-191-0/+15
* add not-yet-supported Unicode test just so it doesn't get lost.Skip Montanaro2003-05-061-0/+20
* Combine the functionality of test_support.run_unittest()Walter Dörwald2003-05-011-11/+7
* some sniffer testsSkip Montanaro2003-04-251-0/+34
* Whitespace normalization.Tim Peters2003-04-241-12/+12
* hoist contents of csv submodule up to the package levelSkip Montanaro2003-04-101-1/+1
* The message "*** skipping leakage tests ***" was causing the test toGuido van Rossum2003-03-211-1/+2
* new CSV file processing module - see PEP 305Skip Montanaro2003-03-201-0/+619