From 038e7a8352b5337399865e1365a69bdba783f846 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BE=9D=E7=91=AA=E8=B2=93?= Date: Wed, 7 Dec 2022 18:45:06 +0800 Subject: [PATCH] Removed the warnings in the documentation of the test client. It is API document now. All content, for public or not, are available. There is no need to warn now. --- src/flask_digest_auth/test.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/flask_digest_auth/test.py b/src/flask_digest_auth/test.py index 75a9cee..15b368e 100644 --- a/src/flask_digest_auth/test.py +++ b/src/flask_digest_auth/test.py @@ -87,10 +87,6 @@ class Client(WerkzeugClient): **kwargs) -> TestResponse: """Opens a request. - .. warning:: - This is to override the parent ``open`` method. You should call - the ``get``, ``post``, ``put``, and ``delete`` methods instead. - :param args: The arguments. :param digest_auth: A tuple of the username and password for the HTTP digest authentication. @@ -115,9 +111,6 @@ class Client(WerkzeugClient): username: str, password: str) -> Authorization: """Composes and returns the request authorization. - .. warning:: - This method is not for public. - :param www_authenticate: The ``WWW-Authenticate`` response. :param uri: The request URI. :param username: The username.