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 amaury.forgeotdarc
Recipients amaury.forgeotdarc
Date 2008-07-31.01:30:53
SpamBayes Score 0.0003849181
Marked as misclassified No
Message-id <1217467855.01.0.813430806299.issue3473@psf.upfronthosting.co.za>
In-reply-to
Content
Should this apply to 2.6 as well? See r65321, I find the last line
easier to read when arguments are in this order.

    def grouper(n, iterable, fillvalue=None):
        args = [iter(iterable)] * n
        return izip_longest(*args, fillvalue=fillvalue)

On the cons side, keyword-only arguments don't exist in 2.6, so the
consistency with function definition syntax does not apply.
History
Date User Action Args
2008-07-31 01:30:55amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc
2008-07-31 01:30:55amaury.forgeotdarcsetmessageid: <1217467855.01.0.813430806299.issue3473@psf.upfronthosting.co.za>
2008-07-31 01:30:54amaury.forgeotdarclinkissue3473 messages
2008-07-31 01:30:54amaury.forgeotdarccreate