Amaury Forgeot d'Arc <[EMAIL PROTECTED]> added the comment: 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. _______________________________________ Python tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue3473> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com