Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecate passing invalid keyword arguments #297

Merged
merged 20 commits into from
Oct 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions changelog.d/297.removal.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
treq request functions and methods like :func:`treq.get()` and :meth:`HTTPClient.post()` now issue a ``DeprecationWarning`` when passed unknown keyword arguments, rather than ignoring them.
Mixing the *json* argument with *files* or *data* is also deprecated.
These warnings will change to a ``TypeError`` in the next treq release.
47 changes: 0 additions & 47 deletions src/treq/_utils.py

This file was deleted.

72 changes: 57 additions & 15 deletions src/treq/api.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
from __future__ import absolute_import, division, print_function

from twisted.web.client import Agent
from twisted.web.client import Agent, HTTPConnectionPool

from treq.client import HTTPClient
from treq._utils import default_pool, default_reactor


def head(url, **kwargs):
Expand All @@ -12,7 +11,7 @@ def head(url, **kwargs):

See :py:func:`treq.request`
"""
return _client(**kwargs).head(url, **kwargs)
return _client(kwargs).head(url, _stacklevel=4, **kwargs)


def get(url, headers=None, **kwargs):
Expand All @@ -21,7 +20,7 @@ def get(url, headers=None, **kwargs):

See :py:func:`treq.request`
"""
return _client(**kwargs).get(url, headers=headers, **kwargs)
return _client(kwargs).get(url, headers=headers, _stacklevel=4, **kwargs)


def post(url, data=None, **kwargs):
Expand All @@ -30,7 +29,7 @@ def post(url, data=None, **kwargs):

See :py:func:`treq.request`
"""
return _client(**kwargs).post(url, data=data, **kwargs)
return _client(kwargs).post(url, data=data, _stacklevel=4, **kwargs)


def put(url, data=None, **kwargs):
Expand All @@ -39,7 +38,7 @@ def put(url, data=None, **kwargs):

See :py:func:`treq.request`
"""
return _client(**kwargs).put(url, data=data, **kwargs)
return _client(kwargs).put(url, data=data, _stacklevel=4, **kwargs)


def patch(url, data=None, **kwargs):
Expand All @@ -48,7 +47,7 @@ def patch(url, data=None, **kwargs):

See :py:func:`treq.request`
"""
return _client(**kwargs).patch(url, data=data, **kwargs)
return _client(kwargs).patch(url, data=data, _stacklevel=4, **kwargs)


def delete(url, **kwargs):
Expand All @@ -57,7 +56,7 @@ def delete(url, **kwargs):

See :py:func:`treq.request`
"""
return _client(**kwargs).delete(url, **kwargs)
return _client(kwargs).delete(url, _stacklevel=4, **kwargs)


def request(method, url, **kwargs):
Expand Down Expand Up @@ -123,19 +122,62 @@ def request(method, url, **kwargs):
The *url* param now accepts :class:`hyperlink.DecodedURL` and
:class:`hyperlink.EncodedURL` objects.
"""
return _client(**kwargs).request(method, url, **kwargs)
return _client(kwargs).request(method, url, _stacklevel=3, **kwargs)


#
# Private API
#

def _client(*args, **kwargs):
agent = kwargs.get('agent')

def default_reactor(reactor):
"""
Return the specified reactor or the default.
"""
if reactor is None:
from twisted.internet import reactor

return reactor


_global_pool = [None]


def get_global_pool():
return _global_pool[0]


def set_global_pool(pool):
_global_pool[0] = pool


def default_pool(reactor, pool, persistent):
"""
Return the specified pool or a pool with the specified reactor and
persistence.
"""
reactor = default_reactor(reactor)

if pool is not None:
return pool

if persistent is False:
return HTTPConnectionPool(reactor, persistent=persistent)

if get_global_pool() is None:
set_global_pool(HTTPConnectionPool(reactor, persistent=True))

return get_global_pool()


def _client(kwargs):
agent = kwargs.pop("agent", None)
pool = kwargs.pop("pool", None)
persistent = kwargs.pop("persistent", None)
if agent is None:
reactor = default_reactor(kwargs.get('reactor'))
pool = default_pool(reactor,
kwargs.get('pool'),
kwargs.get('persistent'))
# "reactor" isn't removed from kwargs because it must also be passed
# down for use in the timeout logic.
reactor = default_reactor(kwargs.get("reactor"))
pool = default_pool(reactor, pool, persistent)
agent = Agent(reactor, pool=pool)
return HTTPClient(agent)
Loading