Skip to content

Commit 6da8ae9

Browse files
committed
Drop autodoc markup from test_utils.py
1 parent 8bfabd7 commit 6da8ae9

File tree

1 file changed

+2
-12
lines changed

1 file changed

+2
-12
lines changed

aiohttp/test_utils.py

+2-12
Original file line numberDiff line numberDiff line change
@@ -174,18 +174,10 @@ def _close_hook(self):
174174

175175
class TestClient:
176176
"""
177-
A test client implementation, for a aiohttp.web.Application.
177+
A test client implementation.
178178
179-
:param app: the aiohttp.web application passed to create_test_server
179+
To write functional tests for aiohttp based servers.
180180
181-
:type app: aiohttp.web.Application
182-
183-
:param protocol: http or https
184-
185-
:type protocol: str
186-
187-
TestClient can also be used as a contextmanager, returning
188-
the instance of itself instantiated.
189181
"""
190182

191183
def __init__(self, app_or_server, *, scheme=sentinel, host=sentinel,
@@ -441,8 +433,6 @@ def teardown_test_loop(loop):
441433
"""Teardown and cleanup an event_loop created
442434
by setup_test_loop.
443435
444-
:param loop: the loop to teardown
445-
:type loop: asyncio.BaseEventLoop
446436
"""
447437
closed = loop.is_closed()
448438
if not closed:

0 commit comments

Comments
 (0)