1. 0383be4 Remove usesless function from csv module (GH-20762) by Dong-hee Na · 4 years, 2 months ago
  2. 235f918 bpo-40876: Clarify error message in the csv module (GH-20653) by Ram Rachum · 4 years, 2 months ago
  3. 586be6f Remove unused ReaderObject_Check macro (#20614) by Dong-hee Na · 4 years, 2 months ago
  4. 4a21e57 bpo-40268: Remove unused structmember.h includes (GH-19530) by Victor Stinner · 4 years, 4 months ago
  5. cd8295f bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data. (GH-19345) by Serhiy Storchaka · 4 years, 4 months ago
  6. 37fcbb6 bpo-40024: Update C extension modules to use PyModule_AddType() (GH-19119) by Dong-hee Na · 4 years, 5 months ago
  7. f707d94 bpo-39968: Convert extension modules' macros of get_module_state() to inline functions (GH-19017) by Hai Shi · 4 years, 5 months ago
  8. 1b55b65 bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521) by Dong-hee Na · 4 years, 6 months ago
  9. ffd9753 bpo-39245: Switch to public API for Vectorcall (GH-18460) by Petr Viktorin · 4 years, 6 months ago
  10. daa9756 bpo-39573: Use Py_TYPE() macro in Modules directory (GH-18393) by Victor Stinner · 4 years, 6 months ago
  11. 41c57b3 bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630) by Serhiy Storchaka · 5 years ago
  12. 196a530 bpo-37483: add _PyObject_CallOneArg() function (#14558) by Jeroen Demeyer · 5 years ago
  13. 7821b4c Fix name of '\0'. (GH-14222) by Benjamin Peterson · 5 years ago
  14. 530f506 bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464) by Jeroen Demeyer · 5 years ago
  15. 2bc158f Change WriterObj.writeline to WriterObj.write (GH-12344) by Rémi Lapeyre · 5 years ago
  16. a24107b bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112) by Serhiy Storchaka · 5 years ago
  17. d4f9cf5 bpo-33029: Fix signatures of getter and setter functions. (GH-10746) by Serhiy Storchaka · 6 years ago
  18. 62be742 bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749) by Serhiy Storchaka · 6 years ago
  19. 67b9cc8 bpo-34395: Fix memory leaks caused by incautious usage of PyMem_Resize(). (GH-8756) by Sergey Fedoseev · 6 years ago
  20. 323748a bpo-34197: Make _csv.Dialect attributes booleans. (GH-8440) by Serhiy Storchaka · 6 years ago
  21. aa0735f bpo-32747: Remove trailing spaces in docstrings. (GH-5491) by oldk · 7 years ago
  22. 2001900 bpo-32255: Always quote a single empty field when write into a CSV file. (#4769) by Licht Takeuchi · 7 years ago
  23. 0b3ec19 Use NULL rather than 0. (#778) by Serhiy Storchaka · 7 years ago
  24. 228b12e Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever by Serhiy Storchaka · 8 years ago
  25. de4ae3d Backed out changeset b9c9691c72c5 by Victor Stinner · 8 years ago
  26. 27580c1 Replace PyObject_CallFunctionObjArgs() with fastcall by Victor Stinner · 8 years ago
  27. 7a6dbb7 _csv: use _PyLong_AsInt() by Victor Stinner · 8 years ago
  28. 6412f49 Issue #27809: _csv: _call_dialect() uses fast call by Victor Stinner · 8 years ago
  29. 7bc44302 merge 3.5 (closes #27758) by Benjamin Peterson · 8 years ago
  30. 9745ee0 merge 3.4 (closes #27758) by Benjamin Peterson · 8 years ago
  31. 59b6abd merge 3.3 (#27758) by Benjamin Peterson · 8 years ago
  32. 6e01d90 check for overflow in join_append_data (closes #27758) by Benjamin Peterson · 8 years ago
  33. b6a9c97 Issue #26778: Fixed "a/an/and" typos in code comment, documentation and error by Serhiy Storchaka · 8 years ago
  34. 6a7b3a7 Issue #26778: Fixed "a/an/and" typos in code comment and documentation. by Serhiy Storchaka · 8 years ago
  35. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  36. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  37. 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 9 years ago
  38. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  39. 987f215 Issue #25290: Fix typo in csv.reader() docstring by Berker Peksag · 9 years ago
  40. e2382c5 Issue #25290: Fix typo in csv.reader() docstring by Berker Peksag · 9 years ago
  41. ab2f966 Issue #23659: Document **fmtparams in csv.register_dialect docstring. by Berker Peksag · 9 years ago
  42. 12b50ce Issue #23659: Document **fmtparams in csv.register_dialect docstring. by Berker Peksag · 9 years ago
  43. 7901b48 Issue #23171: csv.Writer.writerow() now supports arbitrary iterables. by Serhiy Storchaka · 9 years ago
  44. 706768c Issue #22156: Fix some "comparison between signed and unsigned integers" by Victor Stinner · 10 years ago
  45. 0f41acb Issue #22076: Minor grammar fix. by Berker Peksag · 10 years ago
  46. cf58fb5 Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and by Serhiy Storchaka · 11 years ago
  47. cac23a5 Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and by Serhiy Storchaka · 11 years ago
  48. b80b378 Issue #19437: Fix parse_save_field() of the csv module, handle PyList_Append() by Victor Stinner · 11 years ago
  49. 9a7d376 Use logic operator, not bitwise operator, for conditional. by R David Murray · 11 years ago
  50. c7c42ef #15927: Fix cvs.reader parsing of escaped \r\n with quoting off. by R David Murray · 11 years ago
  51. e6996ed Issue #16145: Support legacy strings in the _csv module. by Stefan Krah · 12 years ago
  52. 49d1302 merge 3.2: Issue #16013: Fix CSV Reader parsing issue with ending quote characters. Patch by Serhiy Storchaka. by Senthil Kumaran · 12 years ago
  53. 67b7b98 Issue #16013: Fix CSV Reader parsing issue with ending quote characters. Patch by Serhiy Storchaka. by Senthil Kumaran · 12 years ago
  54. 721738f Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  55. 6f430e4 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  56. e7672d3 Issue #14732: The _csv module now uses PEP 3121 module initialization. by Antoine Pitrou · 12 years ago
  57. 9e30aa5 Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH() by Victor Stinner · 13 years ago
  58. 5f4f4c5 Replace Py_UNICODE_strchr with PyUnicode_FindChar. by Martin v. Löwis · 13 years ago
  59. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  60. 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
  61. 72ca65d Fix a Py_UCS4 / Py_UNICODE mixup. by Antoine Pitrou · 13 years ago
  62. 77ea640 Migrate the _csv module to the new unicode APIs by Antoine Pitrou · 13 years ago
  63. 17a332a fix compiler warnings by Benjamin Peterson · 13 years ago
  64. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  65. 4fe519b Issue #10359: Remove useless (duplicate) initialization in _csv by Victor Stinner · 14 years ago
  66. 4045575 Fix more 64-bit warnings. by Antoine Pitrou · 14 years ago
  67. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  68. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
  69. 211c625 Issue #1717, stage 2: remove uses of tp_compare in Modules and most Objects. by Mark Dickinson · 16 years ago
  70. 9c74b14 Merged revisions 64114 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  71. 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
  72. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  73. d1a1d1e Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow. by Martin v. Löwis · 17 years ago
  74. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  75. 218a5ed Fixed #1508 Removal of stale code in _csv.c / pyexpat.c by Christian Heimes · 17 years ago
  76. 1c280ab Rewrap error message. by Georg Brandl · 17 years ago
  77. f519261 #1479: Fix refleak in csv module (from rev 59062). by Georg Brandl · 17 years ago
  78. 10c476d Correct test_cvs on Windows, as suggested by Raghuram Devarakonda by Amaury Forgeot d'Arc · 17 years ago
  79. 519a042 Replace PyObject_Unicode with PyObject_Str everywhere, and remove the by Thomas Heller · 17 years ago
  80. 3172c5d Patch# 1258 by Christian Heimes: kill basestring. by Guido van Rossum · 17 years ago
  81. a9769c2 Fix the last remaining test_csv failure. by Guido van Rossum · 17 years ago
  82. e3b10f4 One char->Py_UNICODE change missed in r56777 - according to Adam Hupp this is the change to make... by Skip Montanaro · 17 years ago
  83. 4626458 SF patch# 1767398 by Adam Hupp. by Guido van Rossum · 17 years ago
  84. 33d2689 Merged revisions 56492-56752 via svnmerge from by Guido van Rossum · 17 years ago
  85. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  86. bce56a6 Fix some miscellaneous places that incorrectly insisted on str8. by Guido van Rossum · 17 years ago
  87. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  88. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  89. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  90. 227b533 Finish getting rid of statichere/staticforward by Neal Norwitz · 18 years ago
  91. 02cbf4a More unconsting. by Martin v. Löwis · 18 years ago
  92. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  93. 32c5d42 Michael Hudson pointed out that the Dialect_Type object isn't INCREF'd. Why by Skip Montanaro · 19 years ago
  94. d60fbd4 Leak fix from Michael Hudson. Fix memory leak when dialect doesn't by Skip Montanaro · 19 years ago
  95. f69d94f Moved reader \r and \n processing from the iterator to the state machine - by Andrew McNamara · 20 years ago
  96. 5cfd837 Improve wording of parser error message. by Andrew McNamara · 20 years ago
  97. 7f2053e Add counting of source iterator lines to the reader object - handy for by Andrew McNamara · 20 years ago
  98. 0f0599d When quoting=QUOTE_NONNUMERIC, the reader now casts unquoted fields to floats. by Andrew McNamara · 20 years ago
  99. 5d45a8d Fix logic problem in quoting=csv.QUOTE_ALL, quotechar=None check, add test. by Andrew McNamara · 20 years ago
  100. c89f284 When using QUOTE_NONNUMERIC, we now test for "numericness" with by Andrew McNamara · 20 years ago