Searched refs:escapechar (Results 1 – 7 of 7) sorted by relevance
/third_party/python/Lib/test/ |
D | test_csv.py | 65 self.assertEqual(obj.dialect.escapechar, None) 86 kwargs = dict(delimiter=':', doublequote=False, escapechar='\\', 93 self.assertEqual(obj.dialect.escapechar, '\\') 111 escapechar='^' variable in Test_Csv._test_dialect_attrs.dialect 121 self.assertEqual(obj.dialect.escapechar, '^') 191 escapechar='\\') 193 escapechar=None, doublequote=False) 195 escapechar='\\', doublequote = False) 197 escapechar='\\', quoting = csv.QUOTE_MINIMAL) 199 escapechar='\\', quoting = csv.QUOTE_MINIMAL, [all …]
|
/third_party/python/Modules/ |
D | _csv.c | 99 Py_UCS4 escapechar; /* escape character */ member 181 return get_nullchar_as_None(self->escapechar); in Dialect_get_escapechar() 398 PyObject *escapechar = NULL; in dialect_new() local 410 &escapechar, in dialect_new() 435 escapechar == NULL && in dialect_new() 453 Py_XINCREF(escapechar); in dialect_new() 470 DIALECT_GETATTR(escapechar, "escapechar"); in dialect_new() 484 DIASET(_set_char_or_none, "escapechar", &self->escapechar, escapechar, 0); in dialect_new() 518 Py_CLEAR(escapechar); in dialect_new() 696 else if (c == dialect->escapechar) { in parse_process_char() [all …]
|
/third_party/python/Doc/library/ |
D | csv.rst | 332 *delimiter* occurs in output data it is preceded by the current *escapechar* 333 character. If *escapechar* is not set, the writer will raise :exc:`Error` if 372 :const:`False`, the *escapechar* is used as a prefix to the *quotechar*. It 375 On output, if *doublequote* is :const:`False` and no *escapechar* is set, 379 .. attribute:: Dialect.escapechar 383 :const:`False`. On reading, the *escapechar* removes any special meaning from
|
/third_party/python/Lib/ |
D | csv.py | 36 escapechar = None variable in Dialect
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0a1.rst | 2465 :func:`csv.writer` now correctly escapes *escapechar* when input contains 2466 *escapechar*. Patch by Catalin Iacob, Berker Peksag, and Itay Elbirt.
|
/third_party/skia/third_party/externals/microhttpd/doc/ |
D | texinfo.tex | 693 % TeX puts in an \escapechar (i.e., `@') at the beginning of the help 4370 \escapechar = `\\ % use backslash in output files. 4922 \escapechar = `\\ 6257 \escapechar=`\\ 7216 \catcode`\@=0 \catcode`\\=\active \escapechar=`\@ 10042 @escapechar = `@@
|
/third_party/python/Misc/ |
D | HISTORY | 2950 - Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and 19270 + the parser now removes the escapechar prefix from escaped characters.
|