diff options
author | Skip Montanaro <skip@pobox.com> | 2003-12-02 18:57:47 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2003-12-02 18:57:47 (GMT) |
commit | 148eb6a6b663df6f949b9eebc1f2b2a97ac11e5c (patch) | |
tree | b5dd3433f35497b64b397c1883a2dcd97d530621 | |
parent | 89f9865b9124134fb8fbb87baed57b59498e469e (diff) | |
download | cpython-148eb6a6b663df6f949b9eebc1f2b2a97ac11e5c.zip cpython-148eb6a6b663df6f949b9eebc1f2b2a97ac11e5c.tar.gz cpython-148eb6a6b663df6f949b9eebc1f2b2a97ac11e5c.tar.bz2 |
doc nit
-rw-r--r-- | Modules/_csv.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Modules/_csv.c b/Modules/_csv.c index 89b0a0d..077416c 100644 --- a/Modules/_csv.c +++ b/Modules/_csv.c @@ -1434,7 +1434,8 @@ PyDoc_STRVAR(csv_module_doc, " field contains either the quotechar or the delimiter\n" " csv.QUOTE_ALL means that quotes are always placed around fields.\n" " csv.QUOTE_NONNUMERIC means that quotes are always placed around\n" -" fields which contain characters other than [+-0-9.].\n" +" fields which do not parse as integers or floating point\n" +" numbers.\n" " csv.QUOTE_NONE means that quotes are never placed around fields.\n" " * escapechar - specifies a one-character string used to escape \n" " the delimiter when quoting is set to QUOTE_NONE.\n" |