On Fri, Feb 5, 2010 at 10:18 PM, Kevin Horn <[email protected]> wrote:

> After looking at this some more, it looks as though "izip_longest" is the
> culprit...introduced in 2.6.
>
> Why its giving a syntax error, though, is beyond me.

The problem is the function call syntax:

>>>        row_lines = list(izip_longest(*row_split, fillvalue=''))
>>>                                                          ^
>>>    SyntaxError: invalid syntax

You have keyword arguments after *args, and this is only valid in 2.6 and up.
-- 
mithrandi, i Ainil en-Balandor, a faer Ambar

_______________________________________________
Twisted-Python mailing list
[email protected]
http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python

Reply via email to