| Commit message (Expand) | Author | Age |
* | gh-118761: Improve import time for `csv` (#128858) | Bénédikt Tran | 2025-01-18 |
* | gh-121905: Consistently use "floating-point" instead of "floating point" (GH-... | Serhiy Storchaka | 2024-07-19 |
* | gh-114628: Display csv.Error without context (#115005) | Terry Jan Reedy | 2024-02-04 |
* | gh-114123: Migrate docstring from _csv to csv (#114124) | Skip Montanaro | 2024-01-18 |
* | gh-67230: add quoting rules to csv module (GH-29469) | Skip Montanaro | 2023-04-12 |
* | bpo-44512: Fix handling of extrasactions arg to csv.DictWriter with mixed or ... | andrei kulakov | 2022-12-09 |
* | gh-99281: [csv] remove try/except, `complex` always exists (#99282) | Nikita Sobolev | 2022-11-10 |
* | gh-76728: Coerce DictReader and DictWriter fieldnames argument to a list (GH-... | Sam Ezeh | 2022-08-25 |
* | Add __class_getitem__ to csv.DictReader and csv.DictWriter (#92393) | Marc Mueller | 2022-05-08 |
* | bpo-44712: Replace "type(literal)" with corresponding builtin types (GH-27294) | Serhiy Storchaka | 2022-05-08 |
* | bpo-43625: Enhance csv sniffer has_headers() to be more accurate (GH-26939) | andrei kulakov | 2021-07-30 |
* | bpo-27497: Add return value to csv.DictWriter.writeheader (GH-12306) | Rémi Lapeyre | 2019-05-10 |
* | bpo-34003: Use dict instead of OrderedDict in csv.DictReader (GH-8014) | Michael Selik | 2019-01-31 |
* | bpo-30157: Fix csv.Sniffer.sniff() regex pattern. (GH-5601) | Serhiy Storchaka | 2018-02-09 |
* | Issue #29405: Make total calculation in _guess_delimiter more accurate. | Xiang Zhang | 2017-02-06 |
* | Issue #18219: Optimize csv.DictWriter for large number of columns. | INADA Naoki | 2016-10-21 |
* | #27364: fix "incorrect" uses of escape character in the stdlib. | R David Murray | 2016-09-08 |
* | Issue #27842: The csv.DictReader now returns rows of type OrderedDict. | Raymond Hettinger | 2016-08-30 |
* | Issue #23883: Add missing APIs to __all__; patch by Jacek Kołodziej | Martin Panter | 2015-11-14 |
* | Issue #23171: csv.Writer.writerow() now supports arbitrary iterables. | Serhiy Storchaka | 2015-03-30 |
* | Issue #14260: The groupindex attribute of regular expression pattern object | Serhiy Storchaka | 2015-03-30 |
* | #19449: Handle non-string keys when generating 'fieldnames' error. | R David Murray | 2013-11-19 |
* | #18155: Regex-escape delimiter, in case it is a regex special char. | R David Murray | 2013-06-29 |
* | #11565: Merge with 3.1. | Ezio Melotti | 2011-03-16 |
|\ |
|
| * | #11565: Fix several typos. Patch by Piotr Kasprzyk. | Ezio Melotti | 2011-03-16 |
| * | Merged revisions 75231 via svnmerge from | Benjamin Peterson | 2009-10-04 |
* | | #5975: add unix_dialect to csv module. | Georg Brandl | 2010-10-27 |
* | | Merged revisions 78384 via svnmerge from | R. David Murray | 2010-02-23 |
* | | Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,... | Benjamin Peterson | 2009-10-04 |
|/ |
|
* | Merged revisions 65795 via svnmerge from | Brett Cannon | 2008-08-18 |
* | Merged revisions 65605 via svnmerge from | Skip Montanaro | 2008-08-09 |
* | Obvious simplification, now that "long" has disappeared. | Amaury Forgeot d'Arc | 2008-04-24 |
* | Merged revisions 61687-61688,61696,61700,61704-61705,61707-61709,61711-61712,... | Christian Heimes | 2008-03-22 |
* | Raise statement normalization in Lib/. | Collin Winter | 2007-08-30 |
* | Merged revisions 56125-56153 via svnmerge from | Guido van Rossum | 2007-07-03 |
* | Change some uses of cStringIO.StringIO to io.StringIO. | Guido van Rossum | 2007-05-18 |
* | Merged revisions 53952-54987 via svnmerge from | Guido van Rossum | 2007-04-27 |
* | PEP 3114: rename .next() to .__next__() and add next() builtin. | Georg Brandl | 2007-04-21 |
* | - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; | Guido van Rossum | 2007-02-11 |
* | Rip out 'long' and 'L'-suffixed integer literals. | Guido van Rossum | 2007-01-15 |
* | SF patch 1631942 by Collin Winter: | Guido van Rossum | 2007-01-10 |
* | Kill reduce(). A coproduction of John Reese, Jacques Frechet, and Alex M. | Guido van Rossum | 2006-08-22 |
* | Fix a delimiter detection problem in sniffer. Sniffing "a|b|c\r\n" was | Skip Montanaro | 2005-12-30 |
* | Fix for problem with Sniffer class. If your delimiter is whitespace and the | Skip Montanaro | 2005-12-28 |
* | Rename csv.set_field_limit to csv.field_size_limit (since it both sets and | Andrew McNamara | 2005-01-12 |
* | Set an upper limit on the size of the field buffer, raise an exception | Andrew McNamara | 2005-01-11 |
* | Replace python-coded validation of csv dialect with a call to the C | Andrew McNamara | 2005-01-11 |
* | Improved the implementation of the internal "dialect" type. The new | Andrew McNamara | 2005-01-07 |
* | add a couple missing docstrings | Skip Montanaro | 2005-01-05 |
* | Make the fieldnames argument optional in the DictReader. If self.fieldnames | Skip Montanaro | 2003-10-03 |