remove BaseRequest and BaseResponse

This commit is contained in:
David Lord 2021-01-29 10:38:40 -08:00
parent fdba0d2526
commit 1936ca8a2e
No known key found for this signature in database
GPG key ID: 7A1C87E3F5BC42A8
5 changed files with 5 additions and 5 deletions

View file

@ -119,7 +119,7 @@ Notice that our test functions begin with the word `test`; this allows
By using ``client.get`` we can send an HTTP ``GET`` request to the
application with the given path. The return value will be a
:class:`~flask.Flask.response_class` object. We can now use the
:attr:`~werkzeug.wrappers.BaseResponse.data` attribute to inspect
:attr:`~werkzeug.wrappers.Response.data` attribute to inspect
the return value (as string) from the application.
In this case, we ensure that ``'No entries here so far'``
is part of the output.