Home | History | Annotate | Download | only in Modules

Lines Matching defs:quoting

83     int quoting;                /* style of quoting to write */
189 return PyLong_FromLong(self->quoting);
287 dialect_check_quoting(int quoting)
292 if ((int)qs->style == quoting)
295 PyErr_Format(PyExc_TypeError, "bad \"quoting\" value");
313 { "quoting", (getter)Dialect_get_quoting},
331 "quoting",
348 PyObject *quoting = NULL;
360 &quoting,
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);
627 dialect->quoting != QUOTE_NONE) {
645 if (dialect->quoting == QUOTE_NONNUMERIC)
706 dialect->quoting != QUOTE_NONE) {
733 if (dialect->quoting != QUOTE_NONE &&
1052 if (dialect->quoting == QUOTE_NONE)
1207 switch (dialect->quoting) {
1249 if (dialect->quoting == QUOTE_NONE) {
1532 " quoting = QUOTE_MINIMAL\n"
1537 " quoting character. It defaults to '\"'.\n"
1546 " * quoting - controls when quotes should be generated by the writer.\n"
1557 " the delimiter when quoting is set to QUOTE_NONE.\n"