@@ -32,9 +32,9 @@ def get(url: Union[_Text, bytes],
3232 Mapping [int , _ParamsMappingValueType ],
3333 Mapping [float , _ParamsMappingValueType ]]] = ...,
3434 ** kwargs ) -> Response : ...
35- def options (url : _Text , ** kwargs ) -> Response : ...
36- def head (url : _Text , ** kwargs ) -> Response : ...
37- def post (url : _Text , data : _Data = ..., json = ..., ** kwargs ) -> Response : ...
38- def put (url : _Text , data : _Data = ..., json = ..., ** kwargs ) -> Response : ...
39- def patch (url : _Text , data : _Data = ..., json = ..., ** kwargs ) -> Response : ...
40- def delete (url : _Text , ** kwargs ) -> Response : ...
35+ def options (url : Union [ _Text , bytes ] , ** kwargs ) -> Response : ...
36+ def head (url : Union [ _Text , bytes ] , ** kwargs ) -> Response : ...
37+ def post (url : Union [ _Text , bytes ] , data : _Data = ..., json = ..., ** kwargs ) -> Response : ...
38+ def put (url : Union [ _Text , bytes ] , data : _Data = ..., json = ..., ** kwargs ) -> Response : ...
39+ def patch (url : Union [ _Text , bytes ] , data : _Data = ..., json = ..., ** kwargs ) -> Response : ...
40+ def delete (url : Union [ _Text , bytes ] , ** kwargs ) -> Response : ...
0 commit comments