Merge pull request #1422 from ashleysommer/server_slots
Add in some server.py __slots__ attribute names that are missing.
This commit is contained in:
commit
fa7405fe9c
@ -62,6 +62,7 @@ class HttpProtocol(asyncio.Protocol):
|
|||||||
"request_class",
|
"request_class",
|
||||||
"is_request_stream",
|
"is_request_stream",
|
||||||
"router",
|
"router",
|
||||||
|
"error_handler",
|
||||||
# enable or disable access log purpose
|
# enable or disable access log purpose
|
||||||
"access_log",
|
"access_log",
|
||||||
# connection management
|
# connection management
|
||||||
@ -73,6 +74,12 @@ class HttpProtocol(asyncio.Protocol):
|
|||||||
"_last_response_time",
|
"_last_response_time",
|
||||||
"_is_stream_handler",
|
"_is_stream_handler",
|
||||||
"_not_paused",
|
"_not_paused",
|
||||||
|
"_request_handler_task",
|
||||||
|
"_request_stream_task",
|
||||||
|
"_keep_alive",
|
||||||
|
"_header_fragment",
|
||||||
|
"state",
|
||||||
|
"_debug",
|
||||||
)
|
)
|
||||||
|
|
||||||
def __init__(
|
def __init__(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user