Changes between Initial Version and Version 1 of Ticket #24069
- Timestamp:
- 01/02/15 11:58:42 (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #24069
- Property Owner changed from nobody to Andreas Pelme
-
Property
Status
changed from
new
toassigned
-
Ticket #24069 – Description
initial v1 3 3 In Python 2.x, `simple_server.ServerHandler` is and old style class. This makes it an error using super() to access the super class. 4 4 5 The solution is simple: explicitly call `simple_server.ServerHandler.handle_error()` .5 The solution is simple: explicitly call `simple_server.ServerHandler.handle_error()` or inherit from object.