diff options
author | Skip Montanaro <skip@pobox.com> | 2003-04-12 18:57:52 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2003-04-12 18:57:52 (GMT) |
commit | 860fc0b1d57b5db63f8fd199885b3f99eab8087e (patch) | |
tree | f3ed6f1a3b2a2b607d1238e0655a76834a65d7ea /Modules/_csv.c | |
parent | 98f16e007448cd0fd21fb6dd2f0a750f9ed7bffd (diff) | |
download | cpython-860fc0b1d57b5db63f8fd199885b3f99eab8087e.zip cpython-860fc0b1d57b5db63f8fd199885b3f99eab8087e.tar.gz cpython-860fc0b1d57b5db63f8fd199885b3f99eab8087e.tar.bz2 |
add writerows docstring
conditionally exclude Unicode functions
Diffstat (limited to 'Modules/_csv.c')
-rw-r--r-- | Modules/_csv.c | 30 |
1 files changed, 24 insertions, 6 deletions
diff --git a/Modules/_csv.c b/Modules/_csv.c index 5f21182..c61519a 100644 --- a/Modules/_csv.c +++ b/Modules/_csv.c @@ -151,7 +151,11 @@ set_string(PyObject **str, PyObject *v) { if (check_delattr(v) < 0) return -1; - if (!PyString_Check(v) && !PyUnicode_Check(v)) { + if (!PyString_Check(v) +#ifdef Py_USING_UNICODE +&& !PyUnicode_Check(v) +#endif +) { PyErr_BadArgument(); return -1; } @@ -311,7 +315,11 @@ dialect_init(DialectObj * self, PyObject * args, PyObject * kwargs) PyObject * dir_list; /* If dialect is a string, look it up in our registry */ - if (PyString_Check(dialect) || PyUnicode_Check(dialect)) { + if (PyString_Check(dialect) +#ifdef Py_USING_UNICODE +|| PyUnicode_Check(dialect) +#endif +) { PyObject * new_dia; new_dia = get_dialect_from_registry(dialect); Py_DECREF(dialect); @@ -1010,9 +1018,9 @@ join_append_lineterminator(WriterObj *self) } PyDoc_STRVAR(csv_writerow_doc, -"join(sequence) -> string\n" +"writerow(sequence)\n" "\n" -"Construct a CSV record from a sequence of fields. Non-string\n" +"Construct and write a CSV record from a sequence of fields. Non-string\n" "elements will be converted to string."); static PyObject * @@ -1088,6 +1096,12 @@ csv_writerow(WriterObj *self, PyObject *seq) "(s#)", self->rec, self->rec_len); } +PyDoc_STRVAR(csv_writerows_doc, +"writerows(sequence of sequences)\n" +"\n" +"Construct and write a series of sequences to a csv file. Non-string\n" +"elements will be converted to string."); + static PyObject * csv_writerows(WriterObj *self, PyObject *seqseq) { @@ -1118,7 +1132,7 @@ csv_writerows(WriterObj *self, PyObject *seqseq) static struct PyMethodDef Writer_methods[] = { { "writerow", (PyCFunction)csv_writerow, METH_O, csv_writerow_doc}, - { "writerows", (PyCFunction)csv_writerows, METH_O}, + { "writerows", (PyCFunction)csv_writerows, METH_O, csv_writerows_doc}, { NULL, NULL } }; @@ -1238,7 +1252,11 @@ csv_register_dialect(PyObject *module, PyObject *args) if (!PyArg_ParseTuple(args, "OO", &name_obj, &dialect_obj)) return NULL; - if (!PyString_Check(name_obj) && !PyUnicode_Check(name_obj)) { + if (!PyString_Check(name_obj) +#ifdef Py_USING_UNICODE +&& !PyUnicode_Check(name_obj) +#endif +) { PyErr_SetString(PyExc_TypeError, "dialect name must be a string or unicode"); return NULL; |