@@ -106,9 +106,8 @@ class Request(transport.Request):
|
106 | 106 | credentials.refresh(request) |
107 | 107 | |
108 | 108 | Args: |
109 | | - http (urllib3.request.RequestMethods): An instance of any urllib3 |
110 | | - class that implements :class:`~urllib3.request.RequestMethods`, |
111 | | - usually :class:`urllib3.PoolManager`. |
| 109 | + http (urllib3.PoolManager): An instance of a urllib3 class that implements |
| 110 | + the request interface (e.g. :class:`urllib3.PoolManager`). |
112 | 111 | |
113 | 112 | .. automethod:: __call__ |
114 | 113 | """ |
@@ -209,7 +208,7 @@ class AuthorizedHttp(RequestMethods): # type: ignore
|
209 | 208 | response = authed_http.request( |
210 | 209 | 'GET', 'https://www.googleapis.com/storage/v1/b') |
211 | 210 | |
212 | | - This class implements :class:`urllib3.request.RequestMethods` and can be |
| 211 | + This class implements the urllib3 request interface and can be |
213 | 212 | used just like any other :class:`urllib3.PoolManager`. |
214 | 213 | |
215 | 214 | The underlying :meth:`urlopen` implementation handles adding the |
|