COMMITS
/ Modules/_csv.c September 1, 2019
S
bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630)
Serhiy Storchaka committed
July 4, 2019
J
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer committed
June 19, 2019
B
Fix name of '\0'. (GH-14222)
Benjamin Peterson committed
May 31, 2019
J
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464)
Jeroen Demeyer committed
May 14, 2019
R
Change WriterObj.writeline to WriterObj.write (GH-12344)
Rémi Lapeyre committed
February 25, 2019
S
bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)
Serhiy Storchaka committed
November 27, 2018
S
bpo-33029: Fix signatures of getter and setter functions. (GH-10746)
Serhiy Storchaka committed
S
bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)
Serhiy Storchaka committed
August 16, 2018
S
bpo-34395: Fix memory leaks caused by incautious usage of PyMem_Resize(). (GH-8756)
Sergey Fedoseev committed
July 26, 2018
S
bpo-34197: Make _csv.Dialect attributes booleans. (GH-8440)
Serhiy Storchaka committed
February 2, 2018
O
bpo-32747: Remove trailing spaces in docstrings. (GH-5491)
oldk committed
December 12, 2017
L
bpo-32255: Always quote a single empty field when write into a CSV file. (#4769)
Licht Takeuchi committed
March 23, 2017
S
Use NULL rather than 0. (#778)
Serhiy Storchaka committed
January 23, 2017
S
Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever
Serhiy Storchaka committed
December 4, 2016
V
Backed out changeset b9c9691c72c5
Victor Stinner committed
December 1, 2016
V
Replace PyObject_CallFunctionObjArgs() with fastcall
Victor Stinner committed
October 19, 2016
V
_csv: use _PyLong_AsInt()
Victor Stinner committed
August 22, 2016
V
Issue #27809: _csv: _call_dialect() uses fast call
Victor Stinner committed
August 14, 2016
B
merge 3.5 (closes #27758)
Benjamin Peterson committed
B
merge 3.4 (closes #27758)
Benjamin Peterson committed
B
merge 3.3 (#27758)
Benjamin Peterson committed
B
check for overflow in join_append_data (closes #27758)
Benjamin Peterson committed
April 17, 2016
S
Issue #26778: Fixed "a/an/and" typos in code comment, documentation and error
Serhiy Storchaka committed
S
Issue #26778: Fixed "a/an/and" typos in code comment and documentation.
Serhiy Storchaka committed
April 6, 2016
S
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka committed
S
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka committed
December 25, 2015
S
Issue #25923: Added the const qualifier to static constant arrays.
Serhiy Storchaka committed
December 24, 2015
S
Issue #20440: Massive replacing unsafe attribute setting code with special
Serhiy Storchaka committed
October 2, 2015
B
Issue #25290: Fix typo in csv.reader() docstring
Berker Peksag committed
B
Issue #25290: Fix typo in csv.reader() docstring
Berker Peksag committed
June 5, 2015
B
Issue #23659: Document **fmtparams in csv.register_dialect docstring.
Berker Peksag committed
B
Issue #23659: Document **fmtparams in csv.register_dialect docstring.
Berker Peksag committed
March 30, 2015
S
Issue #23171: csv.Writer.writerow() now supports arbitrary iterables.
Serhiy Storchaka committed
August 15, 2014
V
Issue #22156: Fix some "comparison between signed and unsigned integers"
Victor Stinner committed
July 27, 2014
B
Issue #22076: Minor grammar fix.
Berker Peksag committed
December 19, 2013
S
Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and
Serhiy Storchaka committed
S
Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and
Serhiy Storchaka committed
November 14, 2013
V
Issue #19437: Fix parse_save_field() of the csv module, handle PyList_Append()
Victor Stinner committed
March 20, 2013
R
Use logic operator, not bitwise operator, for conditional.
R David Murray committed
R
#15927: Fix cvs.reader parsing of escaped \r\n with quoting off.
R David Murray committed
November 2, 2012
S
Issue #16145: Support legacy strings in the _csv module.
Stefan Krah committed
September 25, 2012
S
S
Issue #16013: Fix CSV Reader parsing issue with ending quote characters. Patch by Serhiy Storchaka.
Senthil Kumaran committed
August 15, 2012
A
Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly.
Antoine Pitrou committed
A
Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly.
Antoine Pitrou committed
May 16, 2012
A
Issue #14732: The _csv module now uses PEP 3121 module initialization.
Antoine Pitrou committed
November 21, 2011
V
Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH()
Victor Stinner committed
November 1, 2011
M
Replace Py_UNICODE_strchr with PyUnicode_FindChar.
Martin v. Löwis committed
October 14, 2011
M
Rename _Py_identifier to _Py_IDENTIFIER.
Martin v. Löwis committed
October 10, 2011
M
Use identifier API for PyObject_GetAttrString.
Martin v. Löwis committed