fixed inconsistency for the RECORD file format
This commit is contained in:
parent
308b986ca0
commit
5ac8af56c9
|
@ -220,7 +220,7 @@ The RECORD format
|
|||
|
||||
The `RECORD` file is a CSV file, composed of records, one line per
|
||||
installed file. The ``csv`` module is used to read the file, with
|
||||
the `excel` dialect, which uses these options to read the file:
|
||||
these options:
|
||||
|
||||
- field delimiter : `,`
|
||||
- quoting char : `"`.
|
||||
|
@ -246,8 +246,8 @@ Each record is composed of three elements.
|
|||
|
||||
- the file's size in bytes
|
||||
|
||||
The ``csv`` module with its default options will be used to generate this file,
|
||||
so the field separator will be ",". Any "," characters found within a field
|
||||
The ``csv`` module will be used to generate this file, so the field
|
||||
separator will be ",". Any "," characters found within a field
|
||||
will be escaped automatically by ``csv``.
|
||||
|
||||
When the file is read, the `U` option will be used so the universal newline
|
||||
|
|
Loading…
Reference in New Issue