Home | History | Annotate | Download | only in Modules

Lines Matching refs:quotechar

99     char quotechar;             /* quote character */

197 return get_nullchar_as_None(self->quotechar);
304 { "quotechar", (getter)Dialect_get_quotechar},
322 "quotechar",
339 PyObject *quotechar = NULL;
351 &quotechar,
371 quotechar == 0 &&
389 Py_XINCREF(quotechar);
401 DIALECT_GETATTR(quotechar, "quotechar");
416 DIASET(_set_char, "quotechar", &self->quotechar, quotechar, '"');
428 if (quotechar == Py_None && quoting == NULL)
430 if (self->quoting != QUOTE_NONE && self->quotechar == 0) {
432 "quotechar must be set if quoting enabled");
449 Py_XDECREF(quotechar);
616 else if (c == dialect->quotechar &&
684 else if (c == dialect->quotechar &&
713 c == dialect->quotechar) {
740 dialect->quotechar);
995 ADDCH(dialect->quotechar);
1007 c == dialect->quotechar ||
1012 if (c == dialect->quotechar) {
1014 ADDCH(dialect->quotechar);
1049 ADDCH(dialect->quotechar);
1456 " quotechar = '\"'\n"
1465 " * quotechar - specifies a one-character string to use as the \n"
1479 " field contains either the quotechar or the delimiter\n"