Home | History | Annotate | Download | only in Modules

Lines Matching refs:quotechar

99     char quotechar;             /* quote character */

197 return get_nullchar_as_None(self->quotechar);
313 { "quotechar", (getter)Dialect_get_quotechar},
331 "quotechar",
348 PyObject *quotechar = NULL;
360 &quotechar,
380 quotechar == 0 &&
398 Py_XINCREF(quotechar);
410 DIALECT_GETATTR(quotechar, "quotechar");
425 DIASET(_set_char, "quotechar", &self->quotechar, quotechar, '"');
438 if (quotechar == Py_None && quoting == NULL)
440 if (self->quoting != QUOTE_NONE && self->quotechar == 0) {
442 "quotechar must be set if quoting enabled");
459 Py_XDECREF(quotechar);
626 else if (c == dialect->quotechar &&
694 else if (c == dialect->quotechar &&
723 c == dialect->quotechar) {
750 dialect->quotechar);
1009 ADDCH(dialect->quotechar);
1021 c == dialect->quotechar ||
1026 if (c == dialect->quotechar) {
1028 ADDCH(dialect->quotechar);
1063 ADDCH(dialect->quotechar);
1474 " quotechar = '\"'\n"
1483 " * quotechar - specifies a one-character string to use as the \n"
1497 " field contains either the quotechar or the delimiter\n"