Removed WSGIServer.server_bind() identical to parent version

The method customization was removed in 2ca00faa91.
This commit is contained in:
Claude Paroz 2017-02-11 10:59:57 +01:00
parent d26413113c
commit d4b00c5c24
1 changed files with 0 additions and 5 deletions

View File

@ -65,11 +65,6 @@ class WSGIServer(simple_server.WSGIServer):
self.allow_reuse_address = allow_reuse_address
super().__init__(*args, **kwargs)
def server_bind(self):
"""Override server_bind to store the server name."""
super().server_bind()
self.setup_environ()
def handle_error(self, request, client_address):
if is_broken_pipe_error():
logger.info("- Broken pipe from %s\n", client_address)