@@ -327,7 +327,7 @@ The :mod:`csv` module defines the following constants:
327
327
328
328
Instructs :class: `writer ` objects to quote all non-numeric fields.
329
329
330
- Instructs :class: `reader ` to convert all non-quoted fields to type *float *.
330
+ Instructs :class: `reader ` objects to convert all non-quoted fields to type *float *.
331
331
332
332
333
333
.. data :: QUOTE_NONE
@@ -337,25 +337,25 @@ The :mod:`csv` module defines the following constants:
337
337
character. If *escapechar * is not set, the writer will raise :exc: `Error ` if
338
338
any characters that require escaping are encountered.
339
339
340
- Instructs :class: `reader ` to perform no special processing of quote characters.
340
+ Instructs :class: `reader ` objects to perform no special processing of quote characters.
341
341
342
342
.. data :: QUOTE_NOTNULL
343
343
344
344
Instructs :class: `writer ` objects to quote all fields which are not
345
- ``None ``. This is similar to QUOTE_ALL, except that if a
345
+ ``None ``. This is similar to :data: ` QUOTE_ALL ` , except that if a
346
346
field value is ``None `` an empty (unquoted) string is written.
347
347
348
- Instructs :class: `reader ` to interpret an empty (unquoted) field as None, and
349
- otherwise behave as QUOTE_ALL.
348
+ Instructs :class: `reader ` objects to interpret an empty (unquoted) field as None and
349
+ to otherwise behave as :data: ` QUOTE_ALL ` .
350
350
351
351
.. data :: QUOTE_STRINGS
352
352
353
353
Instructs :class: `writer ` objects to always place quotes around fields
354
- which are strings. This is similar to QUOTE_NONNUMERIC, except that if a
354
+ which are strings. This is similar to :data: ` QUOTE_NONNUMERIC ` , except that if a
355
355
field value is ``None `` an empty (unquoted) string is written.
356
356
357
- Instructs :class: `reader ` to interpret an empty (unquoted) string as None, and
358
- otherwise behave as QUOTE_NONNUMERIC.
357
+ Instructs :class: `reader`objects to interpret an empty (unquoted) string as None and
358
+ to otherwise behave as :data:` QUOTE_NONNUMERIC ` .
359
359
360
360
The :mod: `csv ` module defines the following exception:
361
361
0 commit comments