I'm running Python 2.6 on ubuntu 9.10 and trying the helloworld
tutorial... Should I worry about those warnings ? is there something
wrong with my setup?
I've noticed that warnings can cause problems with modwsgi (at least in
my version of it). Warnings are spit out to stderr and this creates an
internal server error page for me. So yes, it's at least possible that
if you're planning to deploy for apache that this would be an annoyance
there.
The fix is simple enough. I believe you can just change that line to
obj = object.__new__()
and you're all set. This really should be fixed in ToscaWidgets though.
Using python2.5 would be safer, the TG2-stack isn't guaranteed to run
under 2.6. The above warning is an indication of that.
Diez
Using python2.5 would be safer, the TG2-stack isn't guaranteed to run
under 2.6. The above warning is an indication of that.
I was under that impression, but I'm happy to hear I stand corrected. At least
then tw isn't py2.6 approved. I don't expect it to break, but the warning for
example can be annoying or even harmful.
Diez