From a925f90cfe555b2250e19f28fb479a68b1f9b016 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20=C4=8Ce=C5=A1pivo?= Date: Mon, 5 Mar 2018 00:07:02 +0100 Subject: [PATCH] added _reuse_address and _reuse_port to web_runner.TCPSite __slots__ (#2792) --- aiohttp/web_runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aiohttp/web_runner.py b/aiohttp/web_runner.py index 4b03cd9b9f2..a7f2de85e75 100644 --- a/aiohttp/web_runner.py +++ b/aiohttp/web_runner.py @@ -55,7 +55,7 @@ async def stop(self): class TCPSite(BaseSite): - __slots__ = ('_host', '_port') + __slots__ = ('_host', '_port', '_reuse_address', '_reuse_port') def __init__(self, runner, host=None, port=None, *, shutdown_timeout=60.0, ssl_context=None,