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
........
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 @@
+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
--------------