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