Searched refs:DIASET (Results 1 – 1 of 1) sorted by relevance
/third_party/python/Modules/ |
D | _csv.c | 479 #define DIASET(meth, name, target, src, dflt) \ in dialect_new() macro 482 DIASET(_set_char, "delimiter", &self->delimiter, delimiter, ','); in dialect_new() 483 DIASET(_set_bool, "doublequote", &self->doublequote, doublequote, true); in dialect_new() 484 DIASET(_set_char_or_none, "escapechar", &self->escapechar, escapechar, 0); in dialect_new() 485 DIASET(_set_str, "lineterminator", &self->lineterminator, lineterminator, "\r\n"); in dialect_new() 486 DIASET(_set_char_or_none, "quotechar", &self->quotechar, quotechar, '"'); in dialect_new() 487 DIASET(_set_int, "quoting", &self->quoting, quoting, QUOTE_MINIMAL); in dialect_new() 488 DIASET(_set_bool, "skipinitialspace", &self->skipinitialspace, skipinitialspace, false); in dialect_new() 489 DIASET(_set_bool, "strict", &self->strict, strict, false); in dialect_new()
|