diff options
author | Skip Montanaro <skip@pobox.com> | 2008-08-09 19:44:22 (GMT) |
---|---|---|
committer | Skip Montanaro <skip@pobox.com> | 2008-08-09 19:44:22 (GMT) |
commit | af8fcfaef58ee93fd20cfc9e20574f904a7ef802 (patch) | |
tree | 76564b238e0fe27c7d48461ced47d4bacf0c388a /Doc/library/csv.rst | |
parent | bea655e53bac02bb873b2957332f8ff5ad8fc8e5 (diff) | |
download | cpython-af8fcfaef58ee93fd20cfc9e20574f904a7ef802.zip cpython-af8fcfaef58ee93fd20cfc9e20574f904a7ef802.tar.gz cpython-af8fcfaef58ee93fd20cfc9e20574f904a7ef802.tar.bz2 |
Merged revisions 65605 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r65605 | skip.montanaro | 2008-08-08 17:52:51 -0500 (Fri, 08 Aug 2008) | 1 line
accept issue 3436
........
Diffstat (limited to 'Doc/library/csv.rst')
-rw-r--r-- | Doc/library/csv.rst | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Doc/library/csv.rst b/Doc/library/csv.rst index 9043dbc..588a45c 100644 --- a/Doc/library/csv.rst +++ b/Doc/library/csv.rst @@ -372,6 +372,18 @@ Reader objects have the following public attributes: +DictReader objects have the following public attribute: + + +.. attribute:: csvreader.fieldnames + + If not passed as a parameter when creating the object, this attribute is + initialized upon first access or when the first record is read from the + file. + + .. versionchanged:: 2.6 + + Writer Objects -------------- |