Changes between Initial Version and Version 1 of Ticket #24069


Ignore:
Timestamp:
Jan 2, 2015, 5:58:42 AM (9 years ago)
Author:
Andreas Pelme
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #24069

    • Property Owner changed from nobody to Andreas Pelme
    • Property Status newassigned
  • Ticket #24069 – Description

    initial v1  
    33In Python 2.x, `simple_server.ServerHandler` is and old style class. This makes it an error using super() to access the super class.
    44
    5 The solution is simple: explicitly call `simple_server.ServerHandler.handle_error()`.
     5The solution is simple: explicitly call `simple_server.ServerHandler.handle_error()` or inherit from object.
Back to Top