(self, server_address, handler_class, context)
| 21 | class HTTPSServer(_HTTPServer): |
| 22 | |
| 23 | def __init__(self, server_address, handler_class, context): |
| 24 | _HTTPServer.__init__(self, server_address, handler_class) |
| 25 | self.context = context |
| 26 | |
| 27 | def __str__(self): |
| 28 | return ('<%s %s:%s>' % |