Home
last modified time | relevance | path

Searched refs:escapechar (Results 1 – 11 of 11) sorted by relevance

/third_party/python/Lib/test/
Dtest_csv.py65 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.c99 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/
Dcsv.rst332 *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/
Dcsv.py36 escapechar = None variable in Dialect
/third_party/python/Misc/NEWS.d/
D3.10.0a1.rst2465 :func:`csv.writer` now correctly escapes *escapechar* when input contains
2466 *escapechar*. Patch by Catalin Iacob, Berker Peksag, and Itay Elbirt.
/third_party/e2fsprogs/lib/et/
Dtexinfo.tex733 % TeX puts in an \escapechar (i.e., `@') at the beginning of the help
3225 \escapechar = `\\ % use backslash in output files.
3678 \escapechar = `\\
4868 \escapechar=`\\
5659 \catcode`\@=0 \catcode`\\=\active \escapechar=`\@
7206 @escapechar = `@@
/third_party/e2fsprogs/doc/
Dtexinfo.tex733 % TeX puts in an \escapechar (i.e., `@') at the beginning of the help
3225 \escapechar = `\\ % use backslash in output files.
3678 \escapechar = `\\
4868 \escapechar=`\\
5659 \catcode`\@=0 \catcode`\\=\active \escapechar=`\@
7206 @escapechar = `@@
/third_party/gettext/build-aux/
Dtexinfo.tex698 % TeX puts in an \escapechar (i.e., `@') at the beginning of the help
4430 \escapechar = `\\ % use backslash in output files.
4999 \escapechar = `\\
6345 \escapechar=`\\
7309 \catcode`\@=0 \catcode`\\=\active \escapechar=`\@
10168 @escapechar = `@@
/third_party/skia/third_party/externals/microhttpd/doc/
Dtexinfo.tex693 % 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/libffi/doc/
Dtexinfo.tex746 % TeX puts in an \escapechar (i.e., `@') at the beginning of the help
4894 \escapechar = `\\ % use backslash in output files.
11692 @escapechar = `@@
/third_party/python/Misc/
DHISTORY2950 - Issue #18829: csv.Dialect() now checks type for delimiter, escapechar and
19270 + the parser now removes the escapechar prefix from escaped characters.