From d4b00c5c24b72f7b0f22f1f9a69c48fc11bf4ab8 Mon Sep 17 00:00:00 2001 From: Claude Paroz Date: Sat, 11 Feb 2017 10:59:57 +0100 Subject: [PATCH] Removed WSGIServer.server_bind() identical to parent version The method customization was removed in 2ca00faa9137. --- django/core/servers/basehttp.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/django/core/servers/basehttp.py b/django/core/servers/basehttp.py index 5c281b9c24..111b5818cd 100644 --- a/django/core/servers/basehttp.py +++ b/django/core/servers/basehttp.py @@ -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)