summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libcsv.tex
Commit message (Collapse)AuthorAgeFilesLines
* Note change to get_dialect semantics in 2.5.Skip Montanaro2007-11-041-0/+5
|
* [Bug #1585690] Note that line_num was added in Python 2.5Andrew M. Kuchling2006-10-271-0/+1
|
* Backport libcsv.tex bugfix from rev 52218. (SF ticket 1572471)Skip Montanaro2006-10-081-10/+10
|
* minor tweaksSkip Montanaro2006-07-311-1/+1
|
* minor tweaksSkip Montanaro2006-07-311-4/+4
|
* Redo the comment about the 2.5 change in quoted-newline handling.Andrew McNamara2006-07-311-7/+9
|
* markup cleanupsFred Drake2006-07-291-1/+1
|
* Fix case for 'Unix'Andrew M. Kuchling2006-07-291-1/+1
|
* Follow TeX's conventions for hyphensAndrew M. Kuchling2006-07-291-3/+3
|
* fix minor markup error that introduced extra punctuationFred Drake2006-07-291-2/+1
|
* Add a comment to the csv reader documentation that explains why theSkip Montanaro2006-07-291-0/+11
| | | | | treatment of newlines changed in 2.5. Pulled almost verbatim from a comment by Andrew McNamara in <http://python.org/sf/1465014>.
* Change the example classes UnicodeReader and UnicodeWriter soWalter Dörwald2006-04-041-11/+35
| | | | | | | | that they work with all encodings. For UnicodeReader the real input stream is wrapped in a line iterator that reencodes the input to UTF-8. For UnicodeWriter the UTF-8 encoded output is written to a queue for where it is reencoded to the target encoding and written to the real output stream.
* added another example of Unicode CSV parsing; reworked the example text a ↵David Goodger2006-04-041-9/+48
| | | | bit; corrected notice in the intro and added a link to the examples
* Bug #1440831: fix csv UnicodeWriter exampleGeorg Brandl2006-03-071-2/+2
|
* Fix broken example of csv.reader use (it returns an iterator, which isn'tThomas Wouters2006-02-161-1/+2
| | | | | | indexable) by using the same 'for' construct as all other examples. (Also emphasizes that reading from a random iterable is no different than reading from a file.)
* typoSkip Montanaro2005-12-281-1/+1
|
* add UnicodeReader and UnicodeWriter example classesSkip Montanaro2005-03-181-0/+35
|
* Many updates to csv module doco.Andrew McNamara2005-01-121-32/+110
|
* add a couple missing itemsSkip Montanaro2005-01-051-0/+10
|
* [Bug #998307] Use open() instead of file() in docsAndrew M. Kuchling2004-08-071-3/+3
|
* show how easy it is to manipulate individual columns - from a request onSkip Montanaro2004-07-081-0/+9
| | | | c.l.py
* bring description of optional and keyword args for DictReader and DictWriterSkip Montanaro2004-04-161-6/+8
| | | | | classes into line with the actual code. I didn't see any obvious examples of latex formatting for *args and **kwds so I just guessed.
* The example files need to be opened with the "b" flag.Skip Montanaro2004-03-171-2/+2
|
* expand on notion of row object typeSkip Montanaro2004-01-211-3/+10
|
* typoSkip Montanaro2004-01-211-1/+1
|
* Make the fieldnames argument optional in the DictReader. If self.fieldnamesSkip Montanaro2003-10-031-4/+15
| | | | | | | | | 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.
* SF bug #803679: Missing section number in csv module documentationRaymond Hettinger2003-09-101-2/+2
|
* SF bug #797853: Small problems with the csv module's documentationRaymond Hettinger2003-08-311-6/+6
|
* Note that csv files (when they are actual files) must be opened in 'b'inarySkip Montanaro2003-07-021-4/+9
| | | | | mode. Note that the only restriction on the csvfile passed to writer objects is that it have a write method.
* QUOTE_ALWAYS -> QUOTE_ALLSkip Montanaro2003-06-041-1/+1
|
* * Correct Sniffer doc to correspond to the implementation.Skip Montanaro2003-05-191-7/+7
| | | | | * Add optional delimiters arg to Sniffer.sniff() which restricts the set of candidate field delimiters.
* organizational and markup cleansingFred Drake2003-04-251-76/+81
|
* reflect csv's change back to a module. Document the new sniffer api.Skip Montanaro2003-04-251-20/+14
|
* * minor tweaks relating to the package nature of the beastSkip Montanaro2003-04-241-8/+32
| | | | * added an (incomplete) description of the utils.Sniffer class
* new CSV file processing module - see PEP 305Skip Montanaro2003-03-201-0/+281