Home | History | Annotate | Download | only in Modules

Lines Matching refs:quoted

628             /* start quoted field */
698 /* in quoted field */
732 /* doublequote - seen a quote in a quoted field */
1008 Py_ssize_t field_len, int *quoted,
1037 if (copy_phase && *quoted)
1062 *quoted = 1;
1078 if (*quoted) {
1128 join_append(WriterObj *self, PyObject *field, int quoted)
1143 &quoted, 0);
1152 &quoted, 1);
1205 int quoted;
1209 quoted = !PyNumber_Check(field);
1212 quoted = 1;
1215 quoted = 0;
1220 append_ok = join_append(self, field, quoted);
1224 append_ok = join_append(self, NULL, quoted);
1236 append_ok = join_append(self, str, quoted);
1251 "single empty field record must be quoted");