aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* | Issue #19437: Fix parse_save_field() of the csv module, handle PyList_Append()Victor Stinner2013-11-141-1/+4
* | Use logic operator, not bitwise operator, for conditional.R David Murray2013-03-201-1/+1
* | #15927: Fix cvs.reader parsing of escaped \r\n with quoting off.R David Murray2013-03-191-1/+12
|/
* Issue #16145: Support legacy strings in the _csv module.Stefan Krah2012-11-021-6/+15
* merge 3.2: Issue #16013: Fix CSV Reader parsing issue with ending quote chara...Senthil Kumaran2012-09-251-3/+8
|\
| * Issue #16013: Fix CSV Reader parsing issue with ending quote characters. Patc...Senthil Kumaran2012-09-251-3/+7
* | Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-151-2/+6
|\|
| * Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-151-2/+6
* | Issue #14732: The _csv module now uses PEP 3121 module initialization.Antoine Pitrou2012-05-161-35/+70
* | Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH()Victor Stinner2011-11-211-1/+1
* | Replace Py_UNICODE_strchr with PyUnicode_FindChar.Martin v. Löwis2011-11-011-6/+3
* | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-1/+1
* | Use identifier API for PyObject_GetAttrString.Martin v. Löwis2011-10-101-1/+2
* | Fix a Py_UCS4 / Py_UNICODE mixup.Antoine Pitrou2011-10-071-3/+8
* | Migrate the _csv module to the new unicode APIsAntoine Pitrou2011-10-071-60/+61
* | fix compiler warningsBenjamin Peterson2011-10-061-4/+3
* | Implement PEP 393.Martin v. Löwis2011-09-281-1/+1
|/
* Issue #10359: Remove useless (duplicate) initialization in _csvVictor Stinner2010-11-091-1/+1
* Fix more 64-bit warnings.Antoine Pitrou2010-08-151-14/+10
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-1110/+1110
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-3/+3
* Issue #1717, stage 2: remove uses of tp_compare in Modules and mostMark Dickinson2009-02-011-3/+3
* Merged revisions 64114 via svnmerge fromAmaury Forgeot d'Arc2008-06-181-0/+10
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-12/+26
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-2/+2
* Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow.Martin v. Löwis2007-12-041-3/+18
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-4/+4
* Fixed #1508 Removal of stale code in _csv.c / pyexpat.cChristian Heimes2007-11-281-44/+0
* Rewrap error message.Georg Brandl2007-11-271-3/+4
* #1479: Fix refleak in csv module (from rev 59062).Georg Brandl2007-11-251-6/+5
* Correct test_cvs on Windows, as suggested by Raghuram DevarakondaAmaury Forgeot d'Arc2007-11-191-1/+11
* Replace PyObject_Unicode with PyObject_Str everywhere, and remove theThomas Heller2007-11-151-1/+1
* Patch# 1258 by Christian Heimes: kill basestring.Guido van Rossum2007-10-161-1/+1
* Fix the last remaining test_csv failure.Guido van Rossum2007-08-071-1/+7
* One char->Py_UNICODE change missed in r56777 - according to Adam Hupp this is...Skip Montanaro2007-08-061-2/+2
* SF patch# 1767398 by Adam Hupp.Guido van Rossum2007-08-061-57/+63
* Merged revisions 56492-56752 via svnmerge fromGuido van Rossum2007-08-051-3/+3
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-8/+5
* Fix some miscellaneous places that incorrectly insisted on str8.Guido van Rossum2007-05-101-12/+12
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-141-2/+2
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-0/+2
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-30/+33
* Finish getting rid of statichere/staticforwardNeal Norwitz2006-03-221-3/+3
* More unconsting.Martin v. Löwis2006-02-271-1/+1
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-1/+1
* Michael Hudson pointed out that the Dialect_Type object isn't INCREF'd. WhySkip Montanaro2005-06-151-0/+1
* Leak fix from Michael Hudson. Fix memory leak when dialect doesn'tSkip Montanaro2005-06-151-0/+2
* Moved reader \r and \n processing from the iterator to the state machine -Andrew McNamara2005-01-131-97/+75
* Improve wording of parser error message.Andrew McNamara2005-01-121-2/+2
* Add counting of source iterator lines to the reader object - handy forAndrew McNamara2005-01-121-0/+4