Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | backport Sniffer class fix (rev 41838) | Skip Montanaro | 2005-12-28 | 1 | -0/+4 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2004-07-08 | 1 | -3/+3 |
| | |||||
* | Rewrote to use temporary files instead of StringIO objects in most places. | Skip Montanaro | 2004-06-05 | 1 | -113/+253 |
| | | | | Goal is to work in the direction of universal newline support. | ||||
* | Make the fieldnames argument optional in the DictReader. If self.fieldnames | Skip Montanaro | 2003-10-03 | 1 | -1/+10 |
| | | | | | | | | | is None, the next row read is used as the fieldnames. In the common case, this means the programmer doesn't need to know the fieldnames ahead of time. The first row of the file will be used. In the uncommon case, this means the programmer can set the reader's fieldnames attribute to None at any time and have the next row read as the next set of fieldnames, so a csv file can contain several "sections", each with different fieldnames. | ||||
* | **kwds arg was missing from __init__ for Dict{Reader,Writer} classes. | Skip Montanaro | 2003-09-06 | 1 | -0/+7 |
| | | | | will backport. | ||||
* | add a couple test cases which involve longs and floats in 'e' format. | Skip Montanaro | 2003-06-12 | 1 | -0/+23 |
| | |||||
* | * Correct Sniffer doc to correspond to the implementation. | Skip Montanaro | 2003-05-19 | 1 | -0/+15 |
| | | | | | * Add optional delimiters arg to Sniffer.sniff() which restricts the set of candidate field delimiters. | ||||
* | add not-yet-supported Unicode test just so it doesn't get lost. | Skip Montanaro | 2003-05-06 | 1 | -0/+20 |
| | |||||
* | Combine the functionality of test_support.run_unittest() | Walter Dörwald | 2003-05-01 | 1 | -11/+7 |
| | | | | | | | | | | and test_support.run_classtests() into run_unittest() and use it wherever possible. Also don't use "from test.test_support import ...", but "from test import test_support" in a few spots. From SF patch #662807. | ||||
* | some sniffer tests | Skip Montanaro | 2003-04-25 | 1 | -0/+34 |
| | |||||
* | Whitespace normalization. | Tim Peters | 2003-04-24 | 1 | -12/+12 |
| | |||||
* | hoist contents of csv submodule up to the package level | Skip Montanaro | 2003-04-10 | 1 | -1/+1 |
| | |||||
* | The message "*** skipping leakage tests ***" was causing the test to | Guido van Rossum | 2003-03-21 | 1 | -1/+2 |
| | | | | fail in a non-debug build. Only print this in verbose test mode. | ||||
* | new CSV file processing module - see PEP 305 | Skip Montanaro | 2003-03-20 | 1 | -0/+619 |