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 hynek
Recipients docs@python, hynek
Date 2012-05-22.07:07:35
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1337670456.12.0.0273828432105.issue14880@psf.upfronthosting.co.za>
In-reply-to
Content
It says

> csv.reader(csvfile[, dialect='excel'][, fmtparam])
> csv.writer(csvfile[, dialect='excel'][, fmtparam])

in 2.7. I presume it should be like in 3.x:

> csv.reader(csvfile, dialect='excel', **fmtparams)
> csv.writer(csvfile, dialect='excel', **fmtparams)

Or am I missing something?

(I found argument renaming to be too invasive for my default-args-notation ticket #14804)
History
Date User Action Args
2012-05-22 07:07:36hyneksetrecipients: + hynek, docs@python
2012-05-22 07:07:36hyneksetmessageid: <1337670456.12.0.0273828432105.issue14880@psf.upfronthosting.co.za>
2012-05-22 07:07:35hyneklinkissue14880 messages
2012-05-22 07:07:35hynekcreate