- 2742c5e Re-instate backward compatibility by defining Py_CLEAR if it isn't available. by Thomas Wouters · 19 years ago
- edf17d8 Use Py_CLEAR instead of in-place DECREF/XDECREF or custom macros, for by Thomas Wouters · 19 years ago
- 4aaaa49 docstring tweak by Fredrik Lundh · 19 years ago
- 02cbf4a More unconsting. by Martin v. Löwis · 19 years ago
- af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
- 32c5d42 Michael Hudson pointed out that the Dialect_Type object isn't INCREF'd. Why by Skip Montanaro · 19 years ago
- d60fbd4 Leak fix from Michael Hudson. Fix memory leak when dialect doesn't by Skip Montanaro · 19 years ago
- f69d94f Moved reader \r and \n processing from the iterator to the state machine - by Andrew McNamara · 20 years ago
- 5cfd837 Improve wording of parser error message. by Andrew McNamara · 20 years ago
- 7f2053e Add counting of source iterator lines to the reader object - handy for by Andrew McNamara · 20 years ago
- 0f0599d When quoting=QUOTE_NONNUMERIC, the reader now casts unquoted fields to floats. by Andrew McNamara · 20 years ago
- 5d45a8d Fix logic problem in quoting=csv.QUOTE_ALL, quotechar=None check, add test. by Andrew McNamara · 20 years ago
- c89f284 When using QUOTE_NONNUMERIC, we now test for "numericness" with by Andrew McNamara · 20 years ago
- 31d8896 Rename csv.set_field_limit to csv.field_size_limit (since it both sets and by Andrew McNamara · 20 years ago
- cf0fd5a Add belt and braces check of PyString_AsString return. by Andrew McNamara · 20 years ago
- e4d05c4 Set an upper limit on the size of the field buffer, raise an exception by Andrew McNamara · 20 years ago
- 29bf4e4 Now that internal dialect type is immutable, and the dialect registry by Andrew McNamara · 20 years ago
- 8c94b42 No longer attempt to instantiate python classes describing dialects. This by Andrew McNamara · 20 years ago
- 8662597 Allow dialect-describing keywords to be supplied to register_dialect, by Andrew McNamara · 20 years ago
- 91b9746 Factor out the code for making a dialect instance. by Andrew McNamara · 20 years ago
- dbce261 Only set error string when dict lookup found no matching key (was setting by Andrew McNamara · 20 years ago
- a829263 When parsing args that return a single character, treat null string the by Andrew McNamara · 20 years ago
- 37d2bdf Where a string is desired, test for PyBaseString_Type derived type, by Andrew McNamara · 20 years ago
- 77ead87 Add missing PyObject_GC_Track and PyObject_GC_UnTrack calls to csv reader and by Andrew McNamara · 20 years ago
- 36a7691 Fix parsing of csv files with escapes (escape character previously would be by Andrew McNamara · 20 years ago
- dd3e6cb Fix to use PEP7 brace style. by Andrew McNamara · 20 years ago
- 1196cf1 Improved the implementation of the internal "dialect" type. The new by Andrew McNamara · 20 years ago
- 575a00b Delete Reader_getiter and replace with PyObject_SelfIter. by Andrew McNamara · 20 years ago
- 8d3b9dd Quote \r\n correctly, remove random indentation (patch #1009384). Thanks by Johannes Gijsbers · 20 years ago
- 1761a7c Use PyArg_UnpackTuple() where possible. by Raymond Hettinger · 20 years ago
- 148eb6a doc nit by Skip Montanaro · 21 years ago
- dcfb38c Fix potential leaks identified by Neal Norwitz. by Andrew McNamara · 21 years ago
- 42a8aed Make readers and writers participate in garbage collection. by Jeremy Hylton · 22 years ago
- 38fc837 Must declare vrbls at the tops of blocks in C89 (wouldn't compile). by Tim Peters · 22 years ago
- 7b01a83 use PyModule_Add{Int,String}Constant() where appropriate by Skip Montanaro · 22 years ago
- 577c7a7 tighten up string checks by Skip Montanaro · 22 years ago
- 860fc0b add writerows docstring conditionally exclude Unicode functions by Skip Montanaro · 22 years ago
- 98f16e0 typo by Skip Montanaro · 22 years ago
- dfa35fa typo by Skip Montanaro · 22 years ago
- 3bc093b zap commented out bit of code by Skip Montanaro · 22 years ago
- a16b21f add comment about 2.2 compatibility dump empty TODO comment by Skip Montanaro · 22 years ago
- ef4b7ed Squash compiler wng about signed-vs-unsigned mismatch. by Tim Peters · 22 years ago
- b4a0417 new CSV file processing module - see PEP 305 by Skip Montanaro · 22 years ago