As far as I know we are still trying to stay 2.3 compatable, so if you
open a ticket for this on Trac, (trac.turbogears.org) it should get
fixed.

You will have to register if you aren't already because we've had a
lot of trouble with wikispam.

--Mark Ramm

On 9/8/06, cefstat <[EMAIL PROTECTED]> wrote:
>
> I deployed today a preliminary version of a TG application on a Debian
> system with Python 2.3.5. Unfortunately, request urls of the form
> .../page?id=1 do not work. The problem is in the function "to_kw" in
> turbogears/util.py. In particular, the following
>
> kw.update(izip(islice(argnames, start, len(argnames) - len(defaults)),
> args))
>
> does not work because in Python 2.3  update can not take an iterable as
> argument. This can be easily corrected by using
>
> kv_pairs = izip(islice(argnames, start, len(argnames) - len(defaults)),
> args)
> for k,v in kv_pairs:
>    kw[k] = v
>
>
> >
>


-- 
Mark Ramm-Christensen
email: mark at compoundthinking dot com
blog: www.compoundthinking.com/blog

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/turbogears
-~----------~----~----~----~------~----~------~--~---

Reply via email to