You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Parsing json response funcion is now customizable (still defaults to … (#1)
* Parsing json response funcion is now customizable (still defaults to `json.loads`).
This allows to implement JSON-RPC class hinting or any other conversions.
* Tests import cleanup
* Don't override aiohttp's default json loads
In the case where our users aren't specifying a manual json.loads
method, we'd rather omit that argument, so that aiohttp can use its
logic to determine the default json.loads method.
* Only allow loads as a keyword argument
We're not going to commit to loads being in a particular position in the
argument order on our API.
* Python 3.5 compatible assertion
0 commit comments