[issue9140] SocketServer.BaseRequestHandler not a new-style class?

Éric Araujo report at bugs.python.org
Fri Jul 2 14:50:28 CEST 2010


Éric Araujo <merwok at netwok.org> added the comment:

To address the OP’s problem, super can be removed:

-    super(Handler, self).do_GET()
+    Handler.do_GET(self)

----------
nosy: +merwok

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue9140>
_______________________________________


More information about the Python-bugs-list mailing list