summaryrefslogtreecommitdiff
path: root/Lib/csv.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-30157: Fix csv.Sniffer.sniff() regex pattern. (GH-5601) (GH-5602)Miss Islington (bot)2018-02-101-1/+1
* Issue #29405: Make total calculation in _guess_delimiter more accurate.Xiang Zhang2017-02-061-2/+2
* Issue #18219: Optimize csv.DictWriter for large number of columns.INADA Naoki2016-10-211-1/+1
* #27364: fix "incorrect" uses of escape character in the stdlib.R David Murray2016-09-081-4/+4
* Issue #27842: The csv.DictReader now returns rows of type OrderedDict.Raymond Hettinger2016-08-301-1/+2
* Issue #23883: Add missing APIs to __all__; patch by Jacek KoƂodziejMartin Panter2015-11-141-5/+6
* Issue #23171: csv.Writer.writerow() now supports arbitrary iterables.Serhiy Storchaka2015-03-301-5/+2
* Issue #14260: The groupindex attribute of regular expression pattern objectSerhiy Storchaka2015-03-301-3/+4
* #19449: Handle non-string keys when generating 'fieldnames' error.R David Murray2013-11-191-1/+1
* #18155: Regex-escape delimiter, in case it is a regex special char.R David Murray2013-06-291-2/+3
* #11565: Merge with 3.1.Ezio Melotti2011-03-161-1/+1
|\
| * #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
| * Merged revisions 75231 via svnmerge fromBenjamin Peterson2009-10-041-5/+17
* | #5975: add unix_dialect to csv module.Georg Brandl2010-10-271-1/+11
* | Merged revisions 78384 via svnmerge fromR. David Murray2010-02-231-0/+4
* | Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,...Benjamin Peterson2009-10-041-5/+17
|/
* Merged revisions 65795 via svnmerge fromBrett Cannon2008-08-181-1/+2
* Merged revisions 65605 via svnmerge fromSkip Montanaro2008-08-091-4/+18
* Obvious simplification, now that "long" has disappeared.Amaury Forgeot d'Arc2008-04-241-5/+1
* Merged revisions 61687-61688,61696,61700,61704-61705,61707-61709,61711-61712,...Christian Heimes2008-03-221-0/+3
* Raise statement normalization in Lib/.Collin Winter2007-08-301-6/+5
* Merged revisions 56125-56153 via svnmerge fromGuido van Rossum2007-07-031-1/+1
* Change some uses of cStringIO.StringIO to io.StringIO.Guido van Rossum2007-05-181-4/+1
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-3/+4
* PEP 3114: rename .next() to .__next__() and add next() builtin.Georg Brandl2007-04-211-5/+5
* - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;Guido van Rossum2007-02-111-3/+3
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-2/+2
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-1/+1
* Kill reduce(). A coproduction of John Reese, Jacques Frechet, and Alex M.Guido van Rossum2006-08-221-8/+4
* Fix a delimiter detection problem in sniffer. Sniffing "a|b|c\r\n" wasSkip Montanaro2005-12-301-3/+10
* Fix for problem with Sniffer class. If your delimiter is whitespace and theSkip Montanaro2005-12-281-1/+1
* Rename csv.set_field_limit to csv.field_size_limit (since it both sets andAndrew McNamara2005-01-121-1/+1
* Set an upper limit on the size of the field buffer, raise an exceptionAndrew McNamara2005-01-111-0/+1
* Replace python-coded validation of csv dialect with a call to the CAndrew McNamara2005-01-111-40/+7
* Improved the implementation of the internal "dialect" type. The newAndrew McNamara2005-01-071-1/+1
* add a couple missing docstringsSkip Montanaro2005-01-051-0/+9
* Make the fieldnames argument optional in the DictReader. If self.fieldnamesSkip Montanaro2003-10-031-1/+5
* **kwds arg was missing from __init__ for Dict{Reader,Writer} classes.Skip Montanaro2003-09-061-4/+4
* use the long names for re compilation options; this makes it easier toFred Drake2003-09-021-1/+1
* One more multiple exception catch should be in a tuple.Raymond Hettinger2003-06-121-1/+1
* The multiple exception catch should be in a tuple.Raymond Hettinger2003-06-121-1/+1
* SF Patch #744104: Remove eval() from csvRaymond Hettinger2003-06-121-17/+18
* * Correct Sniffer doc to correspond to the implementation.Skip Montanaro2003-05-191-7/+9
* rework Sniffer api significantlySkip Montanaro2003-04-251-41/+26
* Attempt to deal with some obvious errors in the code. These were allFred Drake2003-04-251-15/+14
* cvs is going to be a module againSkip Montanaro2003-04-241-0/+440