| Commit message (Expand) | Author | Age | Files | Lines |
* | merge 3.4 (closes #27758) | Benjamin Peterson | 2016-08-13 | 1 | -4/+19 |
|\ |
|
| * | merge 3.3 (#27758) | Benjamin Peterson | 2016-08-13 | 1 | -4/+18 |
| |\ |
|
| * | | check for overflow in join_append_data (closes #27758) | Benjamin Peterson | 2016-08-13 | 1 | -4/+19 |
* | | | Issue #26778: Fixed "a/an/and" typos in code comment and documentation. | Serhiy Storchaka | 2016-04-17 | 1 | -1/+1 |
* | | | Issue #22570: Renamed Py_SETREF to Py_XSETREF. | Serhiy Storchaka | 2016-04-06 | 1 | -2/+2 |
* | | | Issue #20440: Massive replacing unsafe attribute setting code with special | Serhiy Storchaka | 2015-12-24 | 1 | -4/+2 |
* | | | Issue #25290: Fix typo in csv.reader() docstring | Berker Peksag | 2015-10-02 | 1 | -1/+1 |
|\ \ \
| | |/
| |/| |
|
| * | | Issue #25290: Fix typo in csv.reader() docstring | Berker Peksag | 2015-10-02 | 1 | -1/+1 |
* | | | Issue #23659: Document **fmtparams in csv.register_dialect docstring. | Berker Peksag | 2015-06-05 | 1 | -1/+1 |
|\ \ \
| |/ / |
|
| * | | Issue #23659: Document **fmtparams in csv.register_dialect docstring. | Berker Peksag | 2015-06-05 | 1 | -1/+1 |
* | | | Issue #23171: csv.Writer.writerow() now supports arbitrary iterables. | Serhiy Storchaka | 2015-03-30 | 1 | -40/+39 |
* | | | Issue #22156: Fix some "comparison between signed and unsigned integers" | Victor Stinner | 2014-08-16 | 1 | -1/+1 |
* | | | Issue #22076: Minor grammar fix. | Berker Peksag | 2014-07-27 | 1 | -2/+2 |
|/ / |
|
* | | Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and | Serhiy Storchaka | 2013-12-19 | 1 | -2/+16 |
|\ \
| |/
|/| |
|
| * | Issue #19437: Fix parse_save_field() of the csv module, handle PyList_Append() | Victor Stinner | 2013-11-14 | 1 | -1/+4 |
| * | Use logic operator, not bitwise operator, for conditional. | R David Murray | 2013-03-20 | 1 | -1/+1 |
| * | #15927: Fix cvs.reader parsing of escaped \r\n with quoting off. | R David Murray | 2013-03-19 | 1 | -1/+12 |
* | | Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and | Serhiy Storchaka | 2013-12-19 | 1 | -1/+8 |
|/ |
|
* | Issue #16145: Support legacy strings in the _csv module. | Stefan Krah | 2012-11-02 | 1 | -6/+15 |
* | merge 3.2: Issue #16013: Fix CSV Reader parsing issue with ending quote chara... | Senthil Kumaran | 2012-09-25 | 1 | -108/+147 |
|\ |
|
| * | Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors... | Antoine Pitrou | 2012-08-15 | 1 | -2/+6 |
| |\ |
|
| * | | Issue #14732: The _csv module now uses PEP 3121 module initialization. | Antoine Pitrou | 2012-05-16 | 1 | -35/+70 |
| * | | Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH() | Victor Stinner | 2011-11-21 | 1 | -1/+1 |
| * | | Replace Py_UNICODE_strchr with PyUnicode_FindChar. | Martin v. Löwis | 2011-11-01 | 1 | -6/+3 |
| * | | Rename _Py_identifier to _Py_IDENTIFIER. | Martin v. Löwis | 2011-10-14 | 1 | -1/+1 |
| * | | Use identifier API for PyObject_GetAttrString. | Martin v. Löwis | 2011-10-10 | 1 | -1/+2 |
| * | | Fix a Py_UCS4 / Py_UNICODE mixup. | Antoine Pitrou | 2011-10-07 | 1 | -3/+8 |
| * | | Migrate the _csv module to the new unicode APIs | Antoine Pitrou | 2011-10-07 | 1 | -60/+61 |
| * | | fix compiler warnings | Benjamin Peterson | 2011-10-06 | 1 | -4/+3 |
| * | | Implement PEP 393. | Martin v. Löwis | 2011-09-28 | 1 | -1/+1 |
* | | | Issue #16013: Fix CSV Reader parsing issue with ending quote characters. Patc... | Senthil Kumaran | 2012-09-25 | 1 | -3/+7 |
| |/
|/| |
|
* | | Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors... | Antoine Pitrou | 2012-08-15 | 1 | -2/+6 |
|/ |
|
* | Issue #10359: Remove useless (duplicate) initialization in _csv | Victor Stinner | 2010-11-09 | 1 | -1/+1 |
* | Fix more 64-bit warnings. | Antoine Pitrou | 2010-08-15 | 1 | -14/+10 |
* | Recorded merge of revisions 81029 via svnmerge from | Antoine Pitrou | 2010-05-09 | 1 | -1110/+1110 |
* | Issue #1717: rename tp_compare to tp_reserved. I'll change the | Mark Dickinson | 2009-02-02 | 1 | -3/+3 |
* | Issue #1717, stage 2: remove uses of tp_compare in Modules and most | Mark Dickinson | 2009-02-01 | 1 | -3/+3 |
* | Merged revisions 64114 via svnmerge from | Amaury Forgeot d'Arc | 2008-06-18 | 1 | -0/+10 |
* | Implement PEP 3121: new module initialization and finalization API. | Martin v. Löwis | 2008-06-11 | 1 | -12/+26 |
* | #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. | Christian Heimes | 2007-12-19 | 1 | -2/+2 |
* | Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow. | Martin v. Löwis | 2007-12-04 | 1 | -3/+18 |
* | Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i... | Christian Heimes | 2007-12-02 | 1 | -4/+4 |
* | Fixed #1508 Removal of stale code in _csv.c / pyexpat.c | Christian Heimes | 2007-11-28 | 1 | -44/+0 |
* | Rewrap error message. | Georg Brandl | 2007-11-27 | 1 | -3/+4 |
* | #1479: Fix refleak in csv module (from rev 59062). | Georg Brandl | 2007-11-25 | 1 | -6/+5 |
* | Correct test_cvs on Windows, as suggested by Raghuram Devarakonda | Amaury Forgeot d'Arc | 2007-11-19 | 1 | -1/+11 |
* | Replace PyObject_Unicode with PyObject_Str everywhere, and remove the | Thomas Heller | 2007-11-15 | 1 | -1/+1 |
* | Patch# 1258 by Christian Heimes: kill basestring. | Guido van Rossum | 2007-10-16 | 1 | -1/+1 |
* | Fix the last remaining test_csv failure. | Guido van Rossum | 2007-08-07 | 1 | -1/+7 |
* | One char->Py_UNICODE change missed in r56777 - according to Adam Hupp this is... | Skip Montanaro | 2007-08-06 | 1 | -2/+2 |