| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #18219: Optimize csv.DictWriter for large number of columns. | INADA Naoki | 2016-10-21 | 1 | -0/+18 |
* | Issue #27895: Strengthen the dict reader tests. | Raymond Hettinger | 2016-08-30 | 1 | -0/+38 |
* | Issue #27842: The csv.DictReader now returns rows of type OrderedDict. | Raymond Hettinger | 2016-08-30 | 1 | -0/+16 |
* | Issue #23277: Remove unused imports in tests. | Serhiy Storchaka | 2016-04-24 | 1 | -3/+0 |
* | Issue #23277: Remove unused sys and os imports | Berker Peksag | 2016-04-24 | 1 | -1/+0 |
* | Issue #22995: Instances of extension types with a state that aren't | Serhiy Storchaka | 2015-12-25 | 1 | -0/+13 |
|\ |
|
| * | Issue #22995: Instances of extension types with a state that aren't | Serhiy Storchaka | 2015-12-25 | 1 | -0/+13 |
* | | Issue #23883: Add missing APIs to __all__; patch by Jacek Ko?odziej | Martin Panter | 2015-11-14 | 1 | -0/+6 |
|/ |
|
* | Issue #21741: Update 147 test modules to use test discovery. | Zachary Ware | 2015-04-13 | 1 | -7/+1 |
* | Issue #23171: csv.Writer.writerow() now supports arbitrary iterables. | Serhiy Storchaka | 2015-03-30 | 1 | -0/+8 |
* | Check that failed writerow() doesn't produce change a file. | Serhiy Storchaka | 2015-03-25 | 1 | -3/+13 |
|\ |
|
| * | Issue #22076: Minor grammar fix. | Berker Peksag | 2014-07-27 | 1 | -3/+3 |
| * | Issue #18727: improve test coverage of the csv module by testing for DictWrit... | Antoine Pitrou | 2014-04-29 | 1 | -0/+10 |
* | | Check that failed writerow() doesn't produce change a file. | Serhiy Storchaka | 2015-03-25 | 1 | -14/+16 |
|/ |
|
* | (Merge 3.3) Issue #18829: Add tests for the csv module for invalid characters | Victor Stinner | 2014-01-02 | 1 | -0/+14 |
|\ |
|
| * | Issue #18829: Add tests for the csv module for invalid characters (delimiter, | Victor Stinner | 2014-01-02 | 1 | -0/+13 |
* | | Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and | Serhiy Storchaka | 2013-12-19 | 1 | -6/+15 |
|\ \
| |/
|/| |
|
| * | Merge: #19449: Handle non-string keys when generating 'fieldnames' error. | R David Murray | 2013-11-19 | 1 | -6/+15 |
| |\ |
|
| | * | Issue #18702: All skipped tests now reported as skipped. | Serhiy Storchaka | 2013-11-03 | 1 | -72/+71 |
| | * | Merge #18155: Regex-escape delimiter, in case it is a regex special char. | R David Murray | 2013-06-29 | 1 | -6/+15 |
| | |\ |
|
| | | * | #15927: Fix cvs.reader parsing of escaped \r\n with quoting off. | R David Murray | 2013-03-19 | 1 | -0/+9 |
| | | * | Replace IOError with OSError (#16715) | Andrew Svetlov | 2012-12-25 | 1 | -6/+6 |
* | | | | Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and | Serhiy Storchaka | 2013-12-19 | 1 | -5/+39 |
|/ / / |
|
* | | | #19449: Handle non-string keys when generating 'fieldnames' error. | R David Murray | 2013-11-19 | 1 | -0/+12 |
* | | | Issue #18702: All skipped tests now reported as skipped. | Serhiy Storchaka | 2013-11-03 | 1 | -72/+71 |
|/ / |
|
* | | #18155: Regex-escape delimiter, in case it is a regex special char. | R David Murray | 2013-06-29 | 1 | -3/+39 |
|/ |
|
* | Issue #16145: Support legacy strings in the _csv module. | Stefan Krah | 2012-11-02 | 1 | -0/+11 |
* | Issue #16013: Fix CSV Reader parsing issue with ending quote characters. Patc... | Senthil Kumaran | 2012-09-25 | 1 | -0/+9 |
* | Fix wrong test code in test_csv (#10602) | Éric Araujo | 2010-12-02 | 1 | -12/+7 |
* | #5975: add unix_dialect to csv module. | Georg Brandl | 2010-10-27 | 1 | -0/+9 |
* | Issue #9308: Removed redundant coding cookies. Added tests for | Alexander Belopolsky | 2010-10-15 | 1 | -1/+0 |
* | Merged revisions 78018,78035-78040,78042-78043,78046,78048-78052,78054,78059,... | Georg Brandl | 2010-03-14 | 1 | -2/+2 |
* | Merged revisions 78384 via svnmerge from | R. David Murray | 2010-02-23 | 1 | -0/+4 |
* | use assert[Not]In where appropriate | Benjamin Peterson | 2010-01-19 | 1 | -1/+1 |
* | Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,... | Benjamin Peterson | 2009-10-04 | 1 | -1/+8 |
* | convert old fail* assertions to assert* | Benjamin Peterson | 2009-06-30 | 1 | -4/+4 |
* | Update documentation for csv module to reflect changes in code, | R. David Murray | 2009-04-04 | 1 | -1/+1 |
* | Merged revisions 70997 via svnmerge from | R. David Murray | 2009-04-01 | 1 | -0/+13 |
* | Merged revisions 65605 via svnmerge from | Skip Montanaro | 2008-08-09 | 1 | -0/+24 |
* | #2621 rename test.test_support to test.support | Benjamin Peterson | 2008-05-20 | 1 | -3/+3 |
* | Correct test_cvs on Windows, as suggested by Raghuram Devarakonda | Amaury Forgeot d'Arc | 2007-11-19 | 1 | -2/+6 |
* | Patch # 1033 by Adam Hupp: | Guido van Rossum | 2007-08-28 | 1 | -26/+25 |
* | Remove string.{letters,lowercase,uppercase}. | Martin v. Löwis | 2007-08-14 | 1 | -1/+1 |
* | SF patch# 1770008 by Christian Heimes (plus some extras). | Guido van Rossum | 2007-08-09 | 1 | -1/+1 |
* | SF patch# 1767398 by Adam Hupp. | Guido van Rossum | 2007-08-06 | 1 | -174/+75 |
* | Change a bunch of file encodings from Latin-1 to UTF-8. | Guido van Rossum | 2007-07-16 | 1 | -8/+8 |
* | Merged revisions 55007-55179 via svnmerge from | Guido van Rossum | 2007-05-07 | 1 | -4/+4 |
* | Merged revisions 53952-54987 via svnmerge from | Guido van Rossum | 2007-04-27 | 1 | -0/+4 |
* | PEP 3114: rename .next() to .__next__() and add next() builtin. | Georg Brandl | 2007-04-21 | 1 | -18/+18 |
* | Make readonly members defined in C throw an AttributeError on modification. T... | Collin Winter | 2007-03-28 | 1 | -2/+2 |