- e437a10 Issue #23277: Remove unused imports in tests. by Serhiy Storchaka · 9 years ago
- 1e8ee9b Issue #23277: Remove unused sys and os imports by Berker Peksag · 9 years ago
- f9253c9 Issue #22995: Instances of extension types with a state that aren't by Serhiy Storchaka · 9 years ago
- f81be8a Issue #22995: Instances of extension types with a state that aren't by Serhiy Storchaka · 9 years ago
- 19e69c5 Issue #23883: Add missing APIs to __all__; patch by Jacek Kołodziej by Martin Panter · 9 years ago
- 38c707e Issue #21741: Update 147 test modules to use test discovery. by Zachary Ware · 10 years ago
- 7901b48 Issue #23171: csv.Writer.writerow() now supports arbitrary iterables. by Serhiy Storchaka · 10 years ago
- 7c316a1 Check that failed writerow() doesn't produce change a file. by Serhiy Storchaka · 10 years ago
- 0b4e355 Check that failed writerow() doesn't produce change a file. by Serhiy Storchaka · 10 years ago
- 0f41acb Issue #22076: Minor grammar fix. by Berker Peksag · 10 years ago
- 05da1ef Issue #18727: improve test coverage of the csv module by testing for DictWriter.writerows. by Antoine Pitrou · 11 years ago
- 009771e (Merge 3.3) Issue #18829: Add tests for the csv module for invalid characters by Victor Stinner · 11 years ago
- 6a31b0f Issue #18829: Add tests for the csv module for invalid characters (delimiter, by Victor Stinner · 11 years ago
- cf58fb5 Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and by Serhiy Storchaka · 11 years ago
- cac23a5 Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and by Serhiy Storchaka · 11 years ago
- 5160da1 Merge: #19449: Handle non-string keys when generating 'fieldnames' error. by R David Murray · 11 years ago
- fb099c9 #19449: Handle non-string keys when generating 'fieldnames' error. by R David Murray · 11 years ago
- 4376763 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 11 years ago
- 7908068 Issue #18702: All skipped tests now reported as skipped. by Serhiy Storchaka · 11 years ago
- 634e076 Merge #18155: Regex-escape delimiter, in case it is a regex special char. by R David Murray · 11 years ago
- 925a322 #18155: Regex-escape delimiter, in case it is a regex special char. by R David Murray · 11 years ago
- c7c42ef #15927: Fix cvs.reader parsing of escaped \r\n with quoting off. by R David Murray · 12 years ago
- f7a17b4 Replace IOError with OSError (#16715) by Andrew Svetlov · 12 years ago
- e6996ed Issue #16145: Support legacy strings in the _csv module. by Stefan Krah · 12 years ago
- 67b7b98 Issue #16013: Fix CSV Reader parsing issue with ending quote characters. Patch by Serhiy Storchaka. by Senthil Kumaran · 12 years ago
- 5137d64 Fix wrong test code in test_csv (#10602) by Éric Araujo · 14 years ago
- 7424dd3 #5975: add unix_dialect to csv module. by Georg Brandl · 14 years ago
- e8f5832 Issue #9308: Removed redundant coding cookies. Added tests for by Alexander Belopolsky · 14 years ago
- 89fad14 Merged revisions 78018,78035-78040,78042-78043,78046,78048-78052,78054,78059,78075-78080 via svnmerge from by Georg Brandl · 15 years ago
- be0698b Merged revisions 78384 via svnmerge from by R. David Murray · 15 years ago
- 577473f use assert[Not]In where appropriate by Benjamin Peterson · 15 years ago
- 4ac9ce4 Merged revisions 74779-74786,74793,74795,74811,74860-74861,74863,74876,74886,74896,74901,74903,74908,74912,74930,74933,74943,74946,74952-74955,75015,75019,75032,75068,75076,75095,75098,75102,75129,75139,75230 via svnmerge from by Benjamin Peterson · 15 years ago
- c9c0f20 convert old fail* assertions to assert* by Benjamin Peterson · 15 years ago
- 8b7d4aa Update documentation for csv module to reflect changes in code, by R. David Murray · 16 years ago
- cde68cf Merged revisions 70997 via svnmerge from by R. David Murray · 16 years ago
- af8fcfa Merged revisions 65605 via svnmerge from by Skip Montanaro · 16 years ago
- ee8712c #2621 rename test.test_support to test.support by Benjamin Peterson · 16 years ago
- 10c476d Correct test_cvs on Windows, as suggested by Raghuram Devarakonda by Amaury Forgeot d'Arc · 17 years ago
- f0c7416 Patch # 1033 by Adam Hupp: by Guido van Rossum · 17 years ago
- 967f1e3 Remove string.{letters,lowercase,uppercase}. by Martin v. Löwis · 17 years ago
- 34d1928 SF patch# 1770008 by Christian Heimes (plus some extras). by Guido van Rossum · 17 years ago
- 4626458 SF patch# 1767398 by Adam Hupp. by Guido van Rossum · 17 years ago
- d77d699 Change a bunch of file encodings from Latin-1 to UTF-8. by Guido van Rossum · 17 years ago
- 805365e Merged revisions 55007-55179 via svnmerge from by Guido van Rossum · 17 years ago
- d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 18 years ago
- a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 18 years ago
- 42dae6a Make readonly members defined in C throw an AttributeError on modification. This brings them into sync with Python-level attributes. Fixes bug #1687163. by Collin Winter · 18 years ago
- be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 18 years ago
- 4d70c3d Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svn by Thomas Wouters · 18 years ago
- 39b29be Fix a delimiter detection problem in sniffer. Sniffing "a|b|c\r\n" was by Skip Montanaro · 19 years ago
- 91bb70c Fix for problem with Sniffer class. If your delimiter is whitespace and the by Skip Montanaro · 19 years ago
- b180c06 Fix tests dependent on the exception raised by non-settable descriptors. by Barry Warsaw · 20 years ago
- 608c2ff Whitespace normalization. by Tim Peters · 20 years ago
- 7f2053e Add counting of source iterator lines to the reader object - handy for by Andrew McNamara · 20 years ago
- 0f0599d When quoting=QUOTE_NONNUMERIC, the reader now casts unquoted fields to floats. by Andrew McNamara · 20 years ago
- 5d45a8d Fix logic problem in quoting=csv.QUOTE_ALL, quotechar=None check, add test. by Andrew McNamara · 20 years ago
- c89f284 When using QUOTE_NONNUMERIC, we now test for "numericness" with by Andrew McNamara · 20 years ago
- 31d8896 Rename csv.set_field_limit to csv.field_size_limit (since it both sets and by Andrew McNamara · 20 years ago
- af1e312 Improve test coverage fractionally. by Andrew McNamara · 20 years ago
- e4d05c4 Set an upper limit on the size of the field buffer, raise an exception by Andrew McNamara · 20 years ago
- 7130ff5 Replace python-coded validation of csv dialect with a call to the C by Andrew McNamara · 20 years ago
- 8c94b42 No longer attempt to instantiate python classes describing dialects. This by Andrew McNamara · 20 years ago
- 8662597 Allow dialect-describing keywords to be supplied to register_dialect, by Andrew McNamara · 20 years ago
- 36a7691 Fix parsing of csv files with escapes (escape character previously would be by Andrew McNamara · 20 years ago
- 5a9fb3c Whitespace normalization. by Tim Peters · 20 years ago
- 1196cf1 Improved the implementation of the internal "dialect" type. The new by Andrew McNamara · 20 years ago
- 27f8836 Whitespace normalization. by Tim Peters · 20 years ago
- 58fc5d08 Rewrote to use temporary files instead of StringIO objects in most places. by Skip Montanaro · 20 years ago
- dffeed3 Make the fieldnames argument optional in the DictReader. If self.fieldnames by Skip Montanaro · 21 years ago
- 3f7a948 **kwds arg was missing from __init__ for Dict{Reader,Writer} classes. by Skip Montanaro · 21 years ago
- 1546bc4 add a couple test cases which involve longs and floats in 'e' format. by Skip Montanaro · 21 years ago
- 7789237 * Correct Sniffer doc to correspond to the implementation. by Skip Montanaro · 21 years ago
- 1a56665 add not-yet-supported Unicode test just so it doesn't get lost. by Skip Montanaro · 22 years ago
- 21d3a32 Combine the functionality of test_support.run_unittest() by Walter Dörwald · 22 years ago
- 48816c6 some sniffer tests by Skip Montanaro · 22 years ago
- 0eadaac Whitespace normalization. by Tim Peters · 22 years ago
- 594adac hoist contents of csv submodule up to the package level by Skip Montanaro · 22 years ago
- e3d1df0 The message "*** skipping leakage tests ***" was causing the test to by Guido van Rossum · 22 years ago
- b4a0417 new CSV file processing module - see PEP 305 by Skip Montanaro · 22 years ago