summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_csv.py
Commit message (Expand)AuthorAgeFilesLines
* gh-67044: Always quote or escape \r and \n in csv.writer() (GH-115741)Serhiy Storchaka2024-02-231-15/+39
* gh-115712: Support CSV dialects with delimiter=' ' and skipinitialspace=True ...Serhiy Storchaka2024-02-201-10/+57
* gh-113732: Fix support of QUOTE_NOTNULL and QUOTE_STRINGS in csv.reader (GH-1...Serhiy Storchaka2024-01-301-0/+25
* gh-113796: Add more validation checks in the csv.Dialect constructor (GH-113797)Serhiy Storchaka2024-01-221-13/+54
* gh-114123: Migrate docstring from _csv to csv (#114124)Skip Montanaro2024-01-181-2/+1
* gh-70835: Clarify error message for CSV file opened with wrong newline (GH-11...Serhiy Storchaka2024-01-101-7/+12
* gh-109653: Remove unused imports in the `Lib/` directory (#109803)Alex Waygood2023-09-241-1/+1
* gh-109050: Remove remaining tests for legacy Unicode C API (GH-109068)Serhiy Storchaka2023-09-091-12/+0
* gh-80527: Change support.requires_legacy_unicode_capi() (#108438)Victor Stinner2023-08-241-1/+1
* gh-80480: array: Add 'w' typecode. (#105242)Inada Naoki2023-06-041-1/+1
* gh-104265 Disallow instantiation of `_csv.Reader` and `_csv.Writer` (#104266)chgnrdv2023-05-071-1/+8
* gh-67230: add quoting rules to csv module (GH-29469)Skip Montanaro2023-04-121-0/+4
* bpo-44512: Fix handling of extrasactions arg to csv.DictWriter with mixed or ...andrei kulakov2022-12-091-0/+8
* gh-65496: Correct wording on csv's skipinitialspace argument (#96170)Stanley2022-10-071-0/+5
* gh-95950: Add a test for both `csv.Dialect` and `kwargs` (#95951)Nikita Sobolev2022-08-291-0/+28
* gh-76728: Coerce DictReader and DictWriter fieldnames argument to a list (GH-...Sam Ezeh2022-08-251-0/+28
* bpo-20028: Empty escapechar/quotechar is not allowed for csv.Dialect (GH-28833)Dong-hee Na2021-10-111-1/+12
* bpo-27580: Add support of null characters in the csv module. (GH-28808)Serhiy Storchaka2021-10-091-5/+39
* bpo-20028: Improve error message of csv.Dialect when initializing (GH-28705)Dong-hee Na2021-10-091-1/+30
* bpo-43625: Enhance csv sniffer has_headers() to be more accurate (GH-26939)andrei kulakov2021-07-301-0/+36
* bpo-44630: Fix assertion errors in csv module (GH-27127)T. Wouters2021-07-131-0/+6
* bpo-28395: Remove unnecessary semicolons in tests (GH-26868)Dong-hee Na2021-06-231-1/+1
* bpo-44089: Allow subclassing of ``csv.Error`` (GH-26008)Ken Jin2021-05-121-0/+3
* bpo-43651: PEP 597: Fix EncodingWarning in some tests (GH-25145)Inada Naoki2021-04-041-28/+28
* bpo-12178: Fix escaping of escapechar in csv.writer() (GH-13710)Berker Peksag2020-09-201-0/+14
* bpo-41338: Fix DeprecationWarning in tests (GH-21542)Inada Naoki2020-07-201-0/+2
* bpo-36346: Make using the legacy Unicode C API optional (GH-21437)Serhiy Storchaka2020-07-101-1/+1
* bpo-26407: Do not mask errors in csv. (GH-20536)Serhiy Storchaka2020-06-221-1/+19
* bpo-27497: Add return value to csv.DictWriter.writeheader (GH-12306)Rémi Lapeyre2019-05-101-0/+6
* bpo-34197: Make _csv.Dialect attributes booleans. (GH-8440)Serhiy Storchaka2018-07-261-21/+19
* bpo-30157: Fix csv.Sniffer.sniff() regex pattern. (GH-5601)Serhiy Storchaka2018-02-091-0/+10
* bpo-32255: Always quote a single empty field when write into a CSV file. (#4769)Licht Takeuchi2017-12-121-1/+20
* Issue #18219: Optimize csv.DictWriter for large number of columns.INADA Naoki2016-10-211-0/+18
* Issue #27895: Strengthen the dict reader tests.Raymond Hettinger2016-08-301-0/+38
* Issue #27842: The csv.DictReader now returns rows of type OrderedDict.Raymond Hettinger2016-08-301-0/+16
* Issue #23277: Remove unused imports in tests.Serhiy Storchaka2016-04-241-3/+0
* Issue #23277: Remove unused sys and os importsBerker Peksag2016-04-241-1/+0
* Issue #22995: Instances of extension types with a state that aren'tSerhiy Storchaka2015-12-251-0/+13
|\
| * Issue #22995: Instances of extension types with a state that aren'tSerhiy Storchaka2015-12-251-0/+13
* | Issue #23883: Add missing APIs to __all__; patch by Jacek KołodziejMartin Panter2015-11-141-0/+6
|/
* Issue #21741: Update 147 test modules to use test discovery.Zachary Ware2015-04-131-7/+1
* Issue #23171: csv.Writer.writerow() now supports arbitrary iterables.Serhiy Storchaka2015-03-301-0/+8
* Check that failed writerow() doesn't produce change a file.Serhiy Storchaka2015-03-251-14/+16
|\
| * Check that failed writerow() doesn't produce change a file.Serhiy Storchaka2015-03-251-14/+16
* | Issue #22076: Minor grammar fix.Berker Peksag2014-07-271-3/+3
* | Issue #18727: improve test coverage of the csv module by testing for DictWrit...Antoine Pitrou2014-04-281-0/+10
|/
* (Merge 3.3) Issue #18829: Add tests for the csv module for invalid charactersVictor Stinner2014-01-021-0/+14
|\
| * Issue #18829: Add tests for the csv module for invalid characters (delimiter,Victor Stinner2014-01-021-0/+13
* | Issue #18829: csv.Dialect() now checks type for delimiter, escapechar andSerhiy Storchaka2013-12-191-5/+39
|\ \ | |/
| * Issue #18829: csv.Dialect() now checks type for delimiter, escapechar andSerhiy Storchaka2013-12-191-5/+39