Lines Matching full:quoting
103 int quoting; /* style of quoting to write */
203 return PyInt_FromLong(self->quoting);
287 dialect_check_quoting(int quoting)
292 if (qs->style == quoting)
295 PyErr_Format(PyExc_TypeError, "bad \"quoting\" value");
313 { "quoting", (getter)Dialect_get_quoting},
331 "quoting",
348 PyObject *quoting = NULL;
360 "ing,
380 quoting == 0 &&
398 Py_XINCREF(quoting);
410 DIALECT_GETATTR(quoting, "quoting");
425 DIASET(_set_int, "quoting", &self->quoting, quoting, QUOTE_MINIMAL);
430 if (dialect_check_quoting(self->quoting))
437 if (quotechar == Py_None && quoting == NULL)
438 self->quoting = QUOTE_NONE;
439 if (self->quoting != QUOTE_NONE && self->quotechar == 0) {
441 "quotechar must be set if quoting enabled");
459 Py_XDECREF(quoting);
626 dialect->quoting != QUOTE_NONE) {
644 if (dialect->quoting == QUOTE_NONNUMERIC)
694 dialect->quoting != QUOTE_NONE) {
721 if (dialect->quoting != QUOTE_NONE &&
1029 if (dialect->quoting == QUOTE_NONE)
1058 if (dialect->quoting == QUOTE_NONE) {
1189 switch (dialect->quoting) {
1492 " quoting = QUOTE_MINIMAL\n"
1497 " quoting character. It defaults to '\"'.\n"
1506 " * quoting - controls when quotes should be generated by the writer.\n"
1517 " the delimiter when quoting is set to QUOTE_NONE.\n"