Lines Matching defs:quotechar
109 Py_UCS4 quotechar; /* quote character */
198 return get_char_or_None(self->quotechar);
352 { "quotechar", (getter)Dialect_get_quotechar},
373 "quotechar",
406 PyObject *quotechar = NULL;
418 "echar,
443 quotechar == NULL &&
461 Py_XINCREF(quotechar);
478 DIALECT_GETATTR(quotechar, "quotechar");
492 DIASET(_set_char_or_none, "quotechar", &self->quotechar, quotechar, '"');
505 if (quotechar == Py_None && quoting == NULL)
507 if (self->quoting != QUOTE_NONE && self->quotechar == NOT_SET) {
509 "quotechar must be set if quoting enabled");
526 Py_CLEAR(quotechar);
697 else if (c == dialect->quotechar &&
776 else if (c == dialect->quotechar &&
805 c == dialect->quotechar) {
832 dialect->quotechar);
1100 ADDCH(dialect->quotechar);
1110 c == dialect->quotechar ||
1117 if (c == dialect->quotechar) {
1119 ADDCH(dialect->quotechar);
1145 ADDCH(dialect->quotechar);
1637 " quotechar = '\"'\n"
1646 " * quotechar - specifies a one-character string to use as the\n"
1660 " field contains either the quotechar or the delimiter\n"