This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author tb
Recipients tb
Date 2012-10-22.08:27:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1350894449.05.0.527683107859.issue16297@psf.upfronthosting.co.za>
In-reply-to
Content
The csv.DictReader contains a setter method for the fieldnames (@fieldnames.setter). However, the __init__ method does not make use of the setter method as it sets _fieldnames directly. To allow users correct/functional overriding of the fieldnames.setter method I would propose changing the line 

self._fieldnames = fieldnames 

to

self.fieldnames = fieldnames
History
Date User Action Args
2012-10-22 08:27:29tbsetrecipients: + tb
2012-10-22 08:27:29tbsetmessageid: <1350894449.05.0.527683107859.issue16297@psf.upfronthosting.co.za>
2012-10-22 08:27:28tblinkissue16297 messages
2012-10-22 08:27:28tbcreate