Skip to content

Commit

Permalink
added _reuse_address and _reuse_port to web_runner.TCPSite __slots__ (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jancespivo authored and asvetlov committed Mar 4, 2018
1 parent 3587121 commit a925f90
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aiohttp/web_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit a925f90

Please sign in to comment.