I'm trying to subclass web.form.Form from the webpy framework to change the behavior (it renders from in a table). I tried doing it in this way:
class SyssecForm(web.form.Form):
def __init__(self, *inputs, **kw):
super(SyssecForm, self).__init__(*inputs, **kw)
def render(self):
out='<div id="form"> '
for i in self.inputs:
html = utils.safeunicode(i.pre) + i.render() + self.rendernote(i.note) + utils.safeunicode(i.post)
out += "%s"%(html)
out += '"<div id="%s"> %s %s</div>'% (i.id, net.websafe(i.description), html)
out+= "</div>"
return out
Now I'm getting this error object.__init__() takes no parameters:

super()in situations where the methods aren't specifically designed for the use withsuper(). Especially__init__()is almost never designed to work well withsuper(), so you should better use an explicit base class callweb.form.Form.__init__(self, ...). – Sven Marnach Apr 15 '12 at 20:05superwith new style classes (that inherit from "object"), but never with old style classes. – Keith Apr 15 '12 at 20:09