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 Steven.Barker
Recipients Steven.Barker, docs@python
Date 2015-02-21.01:03:07
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1424480588.07.0.458026651665.issue23495@psf.upfronthosting.co.za>
In-reply-to
Content
Another Stack Overflow user pointed out that the DictWriter's writerows implementation (in pure Python) unnecessarily converts whatever its argument is into a list in memory before passing it on to the builtin writer.writerows method which would accept any iterable type. Probably it should be changed to use map or a generator expression instead.

So, perhaps this issue isn't purely documentation, but actually a small behavior enhancement as well.
History
Date User Action Args
2015-02-21 01:03:08Steven.Barkersetrecipients: + Steven.Barker, docs@python
2015-02-21 01:03:08Steven.Barkersetmessageid: <1424480588.07.0.458026651665.issue23495@psf.upfronthosting.co.za>
2015-02-21 01:03:08Steven.Barkerlinkissue23495 messages
2015-02-21 01:03:07Steven.Barkercreate