COMMITS
/ Lib/csv.py July 30, 2021
A
bpo-43625: Enhance csv sniffer has_headers() to be more accurate (GH-26939)
andrei kulakov committed
May 10, 2019
R
bpo-27497: Add return value to csv.DictWriter.writeheader (GH-12306)
Rémi Lapeyre committed
January 31, 2019
M
bpo-34003: Use dict instead of OrderedDict in csv.DictReader (GH-8014)
Michael Selik committed
February 9, 2018
S
bpo-30157: Fix csv.Sniffer.sniff() regex pattern. (GH-5601)
Serhiy Storchaka committed
February 6, 2017
X
Issue #29405: Make total calculation in _guess_delimiter more accurate.
Xiang Zhang committed
October 21, 2016
I
Issue #18219: Optimize csv.DictWriter for large number of columns.
INADA Naoki committed
September 8, 2016
R
#27364: fix "incorrect" uses of escape character in the stdlib.
R David Murray committed
August 30, 2016
R
Issue #27842: The csv.DictReader now returns rows of type OrderedDict.
Raymond Hettinger committed
November 14, 2015
M
Issue #23883: Add missing APIs to __all__; patch by Jacek Kołodziej
Martin Panter committed
March 30, 2015
S
Issue #23171: csv.Writer.writerow() now supports arbitrary iterables.
Serhiy Storchaka committed
March 29, 2015
S
Issue #14260: The groupindex attribute of regular expression pattern object
Serhiy Storchaka committed
November 19, 2013
R
#19449: Handle non-string keys when generating 'fieldnames' error.
R David Murray committed
June 29, 2013
R
#18155: Regex-escape delimiter, in case it is a regex special char.
R David Murray committed
March 16, 2011
E
#11565: Merge with 3.1.
Ezio Melotti committed
E
#11565: Fix several typos. Patch by Piotr Kasprzyk.
Ezio Melotti committed
October 27, 2010
G
#5975: add unix_dialect to csv module.
Georg Brandl committed
February 23, 2010
R
Merged revisions 78384 via svnmerge from
R. David Murray committed
October 4, 2009
B
Merged revisions 75231 via svnmerge from
Benjamin Peterson committed
August 18, 2008
B
Merged revisions 65795 via svnmerge from
Brett Cannon committed
August 9, 2008
S
Merged revisions 65605 via svnmerge from
Skip Montanaro committed
April 24, 2008
A
Obvious simplification, now that "long" has disappeared.
Amaury Forgeot d'Arc committed
March 22, 2008
August 30, 2007
C
Raise statement normalization in Lib/.
Collin Winter committed
July 3, 2007
G
Merged revisions 56125-56153 via svnmerge from
Guido van Rossum committed
May 18, 2007
G
Change some uses of cStringIO.StringIO to io.StringIO.
Guido van Rossum committed
April 27, 2007
G
Merged revisions 53952-54987 via svnmerge from
Guido van Rossum committed
April 21, 2007
G
PEP 3114: rename .next() to .__next__() and add next() builtin.
Georg Brandl committed
February 11, 2007
G
- PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone;
Guido van Rossum committed
January 15, 2007
G
Rip out 'long' and 'L'-suffixed integer literals.
Guido van Rossum committed
January 10, 2007
G
SF patch 1631942 by Collin Winter:
Guido van Rossum committed
August 22, 2006
G
Kill reduce(). A coproduction of John Reese, Jacques Frechet, and Alex M.
Guido van Rossum committed
December 30, 2005
S
Fix a delimiter detection problem in sniffer. Sniffing "a|b|c\r\n" was
Skip Montanaro committed
December 28, 2005
S
Fix for problem with Sniffer class. If your delimiter is whitespace and the
Skip Montanaro committed
January 12, 2005
A
Rename csv.set_field_limit to csv.field_size_limit (since it both sets and
Andrew McNamara committed
January 11, 2005
A
Set an upper limit on the size of the field buffer, raise an exception
Andrew McNamara committed
A
Replace python-coded validation of csv dialect with a call to the C
Andrew McNamara committed
January 7, 2005
A
Improved the implementation of the internal "dialect" type. The new
Andrew McNamara committed
January 5, 2005
S
add a couple missing docstrings
Skip Montanaro committed
October 3, 2003
S
Make the fieldnames argument optional in the DictReader. If self.fieldnames
Skip Montanaro committed
September 6, 2003
S
**kwds arg was missing from __init__ for Dict{Reader,Writer} classes.
Skip Montanaro committed
September 2, 2003
F
use the long names for re compilation options; this makes it easier to
Fred Drake committed
June 12, 2003
R
One more multiple exception catch should be in a tuple.
Raymond Hettinger committed
R
The multiple exception catch should be in a tuple.
Raymond Hettinger committed
R
SF Patch #744104: Remove eval() from csv
Raymond Hettinger committed
May 19, 2003
S
* Correct Sniffer doc to correspond to the implementation.
Skip Montanaro committed
April 25, 2003
S
rework Sniffer api significantly
Skip Montanaro committed
F
Attempt to deal with some obvious errors in the code. These were all
Fred Drake committed
April 24, 2003
S
cvs is going to be a module again
Skip Montanaro committed