diff options
| author | Adam Johnson <me@adamj.eu> | 2021-11-22 10:47:38 +0000 |
|---|---|---|
| committer | Carlton Gibson <carlton.gibson@noumenal.es> | 2022-03-08 14:50:06 +0100 |
| commit | a8c15481f4be93700f6e4a8f794de26744e6db20 (patch) | |
| tree | 1fd9a909f28d32133b6f4b6d903411491385bb25 /django/test | |
| parent | d4fd31684ad5a7b9be8a9d26c5a8796f96c8d80b (diff) | |
Rewrote some references to "master".
Following d9a266d657f66b8c4fa068408002a4e3709ee669.
Diffstat (limited to 'django/test')
| -rw-r--r-- | django/test/client.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/django/test/client.py b/django/test/client.py index a38e7dae13..60f4c37c3f 100644 --- a/django/test/client.py +++ b/django/test/client.py @@ -785,7 +785,7 @@ class Client(ClientMixin, RequestFactory): def request(self, **request): """ - The master request method. Compose the environment dictionary and pass + Make a generic request. Compose the environment dictionary and pass to the handler, return the result of the handler. Assume defaults for the query environment, which can be overridden using the arguments to the request. @@ -1041,7 +1041,7 @@ class AsyncClient(ClientMixin, AsyncRequestFactory): async def request(self, **request): """ - The master request method. Compose the scope dictionary and pass to the + Make a generic request. Compose the scope dictionary and pass to the handler, return the result of the handler. Assume defaults for the query environment, which can be overridden using the arguments to the request. |
