Well,

it looks like Python's Handler class is not implemented as a new-style
class in Python 2.6 and below, but probably is in 2.7. That's why
super() works with 2.7 but not with Python versions below.

Subsequently, I'll have to change the parent constructor calls of all
Handler implementation in the logging module.

Phil, would be helpful if you could try other loggers too as soon as I
have pushed the changes. It's the log.write() and log.writebr()
functions that need to be replaced by from pyjamas import logger; log
= logger.getXxxxxLogger(); log.debug('bla bla')

Peter

Reply via email to