66 Commits (10db4dec61d85ad7e09c37e2d463c19fac06f9cf)

Author SHA1 Message Date
Victor Stinner 4fe519bf8d Issue #10359: Remove useless (duplicate) initialization in _csv 15 years ago
Antoine Pitrou 6c4dbd0d44 Merged revisions 84078 via svnmerge from 16 years ago
Antoine Pitrou 4045575dd5 Fix more 64-bit warnings. 16 years ago
Antoine Pitrou 7f14f0d8a0 Recorded merge of revisions 81032 via svnmerge from 16 years ago
Antoine Pitrou f95a1b3c53 Recorded merge of revisions 81029 via svnmerge from 16 years ago
Mark Dickinson e94c679df0 Issue #1717: rename tp_compare to tp_reserved. I'll change the 17 years ago
Mark Dickinson 211c625829 Issue #1717, stage 2: remove uses of tp_compare in Modules and most 17 years ago
Amaury Forgeot d'Arc 9c74b14fe9 Merged revisions 64114 via svnmerge from 18 years ago
Martin v. Löwis 1a21451b1d Implement PEP 3121: new module initialization and finalization API. 18 years ago
Christian Heimes 90aa7646af #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. 18 years ago
Martin v. Löwis d1a1d1ed80 Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow. 18 years ago
Christian Heimes 217cfd1c86 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h 18 years ago
Christian Heimes 218a5ed7d0 Fixed #1508 Removal of stale code in _csv.c / pyexpat.c 18 years ago
Georg Brandl 1c280ab7d6 Rewrap error message. 18 years ago
Georg Brandl f519261563 #1479: Fix refleak in csv module (from rev 59062). 18 years ago
Amaury Forgeot d'Arc 10c476db2c Correct test_cvs on Windows, as suggested by Raghuram Devarakonda 18 years ago
Thomas Heller 519a042c7c Replace PyObject_Unicode with PyObject_Str everywhere, and remove the 18 years ago
Guido van Rossum 3172c5d263 Patch# 1258 by Christian Heimes: kill basestring. 19 years ago
Guido van Rossum a9769c26a3 Fix the last remaining test_csv failure. 19 years ago
Skip Montanaro e3b10f4c4c One char->Py_UNICODE change missed in r56777 - according to Adam Hupp this is the change to make... 19 years ago
Guido van Rossum 4626458cc5 SF patch# 1767398 by Adam Hupp. 19 years ago
Guido van Rossum 33d2689fc9 Merged revisions 56492-56752 via svnmerge from 19 years ago
Martin v. Löwis 9f2e346911 Merged revisions 56467-56482 via svnmerge from 19 years ago
Guido van Rossum bce56a6c5b Fix some miscellaneous places that incorrectly insisted on str8. 19 years ago
Guido van Rossum ddefaf31b3 Merged the int/long unification branch, by very crude means (sorry Thomas!). 19 years ago
Thomas Wouters 477c8d5e70 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. 20 years ago
Thomas Wouters 49fd7fa443 Merge p3yk branch with the trunk up to revision 45595. This breaks a fair 20 years ago
Neal Norwitz 227b5339ed Finish getting rid of statichere/staticforward 20 years ago
Martin v. Löwis 02cbf4ae4b More unconsting. 20 years ago
Jeremy Hylton af68c874a6 Add const to several API functions that take char *. 20 years ago
Skip Montanaro 32c5d424fd Michael Hudson pointed out that the Dialect_Type object isn't INCREF'd. Why 21 years ago
Skip Montanaro d60fbd469e Leak fix from Michael Hudson. Fix memory leak when dialect doesn't 21 years ago
Andrew McNamara f69d94f6c0 Moved reader \r and \n processing from the iterator to the state machine - 21 years ago
Andrew McNamara 5cfd83748a Improve wording of parser error message. 21 years ago
Andrew McNamara 7f2053eff3 Add counting of source iterator lines to the reader object - handy for 21 years ago
Andrew McNamara 0f0599ddc1 When quoting=QUOTE_NONNUMERIC, the reader now casts unquoted fields 21 years ago
Andrew McNamara 5d45a8dc22 Fix logic problem in quoting=csv.QUOTE_ALL, quotechar=None check, add test. 21 years ago
Andrew McNamara c89f284df8 When using QUOTE_NONNUMERIC, we now test for "numericness" with 21 years ago
Andrew McNamara 31d8896ee2 Rename csv.set_field_limit to csv.field_size_limit (since it both sets and 21 years ago
Andrew McNamara cf0fd5ab29 Add belt and braces check of PyString_AsString return. 21 years ago
Andrew McNamara e4d05c4f93 Set an upper limit on the size of the field buffer, raise an exception 21 years ago
Andrew McNamara 29bf4e44f6 Now that internal dialect type is immutable, and the dialect registry 21 years ago
Andrew McNamara 8c94b42f31 No longer attempt to instantiate python classes describing dialects. This 21 years ago
Andrew McNamara 86625972a1 Allow dialect-describing keywords to be supplied to register_dialect, 21 years ago
Andrew McNamara 91b97463cd Factor out the code for making a dialect instance. 21 years ago
Andrew McNamara dbce2618b1 Only set error string when dict lookup found no matching key (was setting 21 years ago
Andrew McNamara a8292636c6 When parsing args that return a single character, treat null string the 21 years ago
Andrew McNamara 37d2bdfa76 Where a string is desired, test for PyBaseString_Type derived type, 21 years ago
Andrew McNamara 77ead87f30 Add missing PyObject_GC_Track and PyObject_GC_UnTrack calls to csv reader and 21 years ago
Andrew McNamara 36a7691c2d Fix parsing of csv files with escapes (escape character previously would be 21 years ago