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


--~--~---------~--~----~------------~-------~--~----~
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