Searched refs:join_append (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython3/Modules/ |
D | _csv.c | 1180 join_append(WriterObj *self, PyObject *field, int quoted) in join_append() function 1276 append_ok = join_append(self, field, quoted); in csv_writerow() 1280 append_ok = join_append(self, NULL, quoted); in csv_writerow() 1292 append_ok = join_append(self, str, quoted); in csv_writerow() 1311 if (!join_append(self, NULL, 1)) in csv_writerow()
|
/external/python/cpython2/Modules/ |
D | _csv.c | 1113 join_append(WriterObj *self, char *field, int *quoted, int quote_empty) in join_append() function 1198 append_ok = join_append(self, in csv_writerow() 1204 append_ok = join_append(self, "", "ed, len == 1); in csv_writerow() 1219 append_ok = join_append(self, PyString_AS_STRING(str), in csv_writerow()
|