diff options
author | Skip Montanaro <skip@pobox.com> | 2011-03-19 18:07:10 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2011-03-19 18:07:10 (GMT) |
commit | c9b49f8759f477966c18f40b5b2e4720e7de595c (patch) | |
tree | 29ffced755933e2884809a9869a7ec85743848be /Doc/library/csv.rst | |
parent | b7d1aebb6697855dbb0d9d3333d9af2b90d78306 (diff) | |
download | cpython-c9b49f8759f477966c18f40b5b2e4720e7de595c.zip cpython-c9b49f8759f477966c18f40b5b2e4720e7de595c.tar.gz cpython-c9b49f8759f477966c18f40b5b2e4720e7de595c.tar.bz2 |
untab
Diffstat (limited to 'Doc/library/csv.rst')
-rw-r--r-- | Doc/library/csv.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index b166d85..897ea2f 100644 --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -477,7 +477,7 @@ done:: import csv for row in csv.reader(['one,two,three']): - print(row) + print(row) .. rubric:: Footnotes |