On 3/1/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Could some enlighten me about this? Thank you! :)
Sure, there are two generator expressions in errorhandling.py. Generator expressions didn't exist in python 2.3, so that's the source of the problem. Unfortunately, fixing that problem doesn't cause TG to run on 2.3. I can't seem to get the new config file format to work under Python2.3. You'll find that TG isn't really Python2.3 friendly. Even when this is fixed, you will, for example, have to translate all the @turbogears.expose(template=".templates.foo") to: my_decorated_method = turbogears.expose(template=".templates.foo")(my_decorated_template) which must be located after the function in the file rather than before. The core cause for this is that all of the TG developers run Python 2.4, so some 2.4isms slip in. I'd commit the changes I've made, but my nosetests are decimated and I don't know why (wasn't this fixed?), so I'll hold off on committing. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

