Searched refs:quotechar (Results 1 - 5 of 5) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
H A D_csv.c99 char quotechar; /* quote character */ member in struct:__anon2726
197 return get_nullchar_as_None(self->quotechar);
313 { "quotechar", (getter)Dialect_get_quotechar},
331 "quotechar",
348 PyObject *quotechar = NULL; local
360 &quotechar,
380 quotechar == 0 &&
398 Py_XINCREF(quotechar);
410 DIALECT_GETATTR(quotechar, "quotechar");
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A D_csv.c99 char quotechar; /* quote character */ member in struct:__anon3032
197 return get_nullchar_as_None(self->quotechar);
304 { "quotechar", (getter)Dialect_get_quotechar},
322 "quotechar",
339 PyObject *quotechar = NULL; local
351 &quotechar,
371 quotechar == 0 &&
389 Py_XINCREF(quotechar);
401 DIALECT_GETATTR(quotechar, "quotechar");
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A Dcsv.py30 delimiter, quotechar, escapechar, doublequote, skipinitialspace,
38 quotechar = None variable in class:Dialect
60 quotechar = '"' variable in class:excel
168 "Sniffs" the format of a CSV file (i.e. delimiter, quotechar)
181 quotechar, doublequote, delimiter, skipinitialspace = \
198 # _csv.reader won't accept a quotechar of ''
199 dialect.quotechar = quotechar or '"'
208 (the probable quotechar) which are preceded and followed
213 If there is no quotechar th
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dcsv.py30 delimiter, quotechar, escapechar, doublequote, skipinitialspace,
38 quotechar = None variable in class:Dialect
60 quotechar = '"' variable in class:excel
164 "Sniffs" the format of a CSV file (i.e. delimiter, quotechar)
177 quotechar, doublequote, delimiter, skipinitialspace = \
194 # _csv.reader won't accept a quotechar of ''
195 dialect.quotechar = quotechar or '"'
204 (the probable quotechar) which are preceded and followed
209 If there is no quotechar th
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_csv.py30 self.assertRaises(TypeError, ctor, arg, quotechar=1)
35 quoting=csv.QUOTE_ALL, quotechar='')
37 quoting=csv.QUOTE_ALL, quotechar=None)
52 self.assertEqual(obj.dialect.quotechar, '"')
72 lineterminator='\r', quotechar='*',
80 self.assertEqual(obj.dialect.quotechar, '*')
98 quotechar='#' variable in class:Test_Csv._test_dialect_attrs.dialect
108 self.assertEqual(obj.dialect.quotechar, '#')
245 quotechar=None, escapechar='\\')
841 mydialect.quotechar
[all...]

Completed in 137 milliseconds