Home | History | Annotate | Download | only in Modules

Lines Matching defs:quoting

103     int quoting;                /* style of quoting to write */

203 return PyInt_FromLong(self->quoting);
288 dialect_check_quoting(int quoting)
293 if (qs->style == quoting)
296 PyErr_Format(PyExc_TypeError, "bad \"quoting\" value");
314 { "quoting", (getter)Dialect_get_quoting},
332 "quoting",
349 PyObject *quoting = NULL;
361 &quoting,
381 quoting == 0 &&
399 Py_XINCREF(quoting);
411 DIALECT_GETATTR(quoting, "quoting");
426 DIASET(_set_int, "quoting", &self->quoting, quoting, QUOTE_MINIMAL);
431 if (dialect_check_quoting(self->quoting))
438 if (quotechar == Py_None && quoting == NULL)
439 self->quoting = QUOTE_NONE;
440 if (self->quoting != QUOTE_NONE && self->quotechar == 0) {
442 "quotechar must be set if quoting enabled");
460 Py_XDECREF(quoting);
627 dialect->quoting != QUOTE_NONE) {
645 if (dialect->quoting == QUOTE_NONNUMERIC)
695 dialect->quoting != QUOTE_NONE) {
722 if (dialect->quoting != QUOTE_NONE &&
1023 if (dialect->quoting == QUOTE_NONE)
1052 if (dialect->quoting == QUOTE_NONE) {
1176 switch (dialect->quoting) {
1479 " quoting = QUOTE_MINIMAL\n"
1484 " quoting character. It defaults to '\"'.\n"
1493 " * quoting - controls when quotes should be generated by the writer.\n"
1504 " the delimiter when quoting is set to QUOTE_NONE.\n"