Changes between Initial Version and Version 1 of Ticket #24069
- Timestamp:
- Jan 2, 2015, 5:58:42 AM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #24069
- Property Owner changed from to
- Property Status new → assigned
-
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.