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);
279 dialect_check_quoting(int quoting)
284 if (qs->style == quoting)
287 PyErr_Format(PyExc_TypeError, "bad \"quoting\" value");
305 { "quoting", (getter)Dialect_get_quoting},
323 "quoting",
340 PyObject *quoting = NULL;
352 &quoting,
372 quoting == 0 &&
390 Py_XINCREF(quoting);
402 DIALECT_GETATTR(quoting, "quoting");
417 DIASET(_set_int, "quoting", &self->quoting, quoting, QUOTE_MINIMAL);
422 if (dialect_check_quoting(self->quoting))
428 if (quotechar == Py_None && quoting == NULL)
429 self->quoting = QUOTE_NONE;
430 if (self->quoting != QUOTE_NONE && self->quotechar == 0) {
432 "quotechar must be set if quoting enabled");
450 Py_XDECREF(quoting);
617 dialect->quoting != QUOTE_NONE) {
635 if (dialect->quoting == QUOTE_NONNUMERIC)
685 dialect->quoting != QUOTE_NONE) {
712 if (dialect->quoting != QUOTE_NONE &&
1009 if (dialect->quoting == QUOTE_NONE)
1038 if (dialect->quoting == QUOTE_NONE) {
1162 switch (dialect->quoting) {
1461 " quoting = QUOTE_MINIMAL\n"
1466 " quoting character. It defaults to '\"'.\n"
1475 " * quoting - controls when quotes should be generated by the writer.\n"
1486 " the delimiter when quoting is set to QUOTE_NONE.\n"