is it possible to consider change to P.kwargs
Open
needs-discussion
typechecking
- Dominant language
- Rust
- Stars
- 7k
- Forks
- 516
- PR merge metrics
- No merged PRs in 30d
Description
```py
def post(self, *args: t.Any, **kw: t.Any) -> TestResponse:
"""Call :meth:`open` with ``method`` set to ``POST``."""
kw["method"] = "POST"
return self.open(*args, **kw)
```
example:
in flask, it will inject "method" as "POST".
Contributor guide
Assessment
This issue has not been assessed yet.