diff options
author | Georg Brandl <georg@python.org> | 2010-10-27 07:27:06 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-10-27 07:27:06 (GMT) |
commit | 7424dd359c9ffcd9a2b866f62fafda6d3a99b4b1 (patch) | |
tree | f3cd5d315c397839b4ab2c96612708c0b73f67dd /Lib/csv.py | |
parent | 347fe5ce3c119f30bd228d5e2678fee5013ca052 (diff) | |
download | cpython-7424dd359c9ffcd9a2b866f62fafda6d3a99b4b1.zip cpython-7424dd359c9ffcd9a2b866f62fafda6d3a99b4b1.tar.gz cpython-7424dd359c9ffcd9a2b866f62fafda6d3a99b4b1.tar.bz2 |
#5975: add unix_dialect to csv module.
Diffstat (limited to 'Lib/csv.py')
-rw-r--r-- | Lib/csv.py | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -20,7 +20,7 @@ __all__ = [ "QUOTE_MINIMAL", "QUOTE_ALL", "QUOTE_NONNUMERIC", "QUOTE_NONE", "unregister_dialect", "__version__", "DictReader", "DictWriter" ] class Dialect: - """Describe an Excel dialect. + """Describe a CSV dialect. This must be subclassed (see csv.excel). Valid attributes are: delimiter, quotechar, escapechar, doublequote, skipinitialspace, @@ -65,6 +65,16 @@ class excel_tab(excel): delimiter = '\t' register_dialect("excel-tab", excel_tab) +class unix_dialect(Dialect): + """Describe the usual properties of Unix-generated CSV files.""" + delimiter = ',' + quotechar = '"' + doublequote = True + skipinitialspace = False + lineterminator = '\n' + quoting = QUOTE_ALL +register_dialect("unix", unix_dialect) + class DictReader: def __init__(self, f, fieldnames=None, restkey=None, restval=None, |