Skip to content

Commit

Permalink
Merge branch '3.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Dec 24, 2018
2 parents 02374e9 + e297851 commit 8c45b4e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ Changelog

.. towncrier release notes start
3.5.1 (2018-12-24)
====================

- Fix a regression about ``ClientSession._requote_redirect_url`` modification in debug
mode.

3.5.0 (2018-12-22)
====================

Expand Down
1 change: 1 addition & 0 deletions aiohttp/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ class ClientSession:
'requote_redirect_url', '_loop', '_cookie_jar',
'_connector_owner', '_default_auth',
'_version', '_json_serialize',
'_requote_redirect_url',
'_timeout', '_raise_for_status', '_auto_decompress',
'_trust_env', '_default_headers', '_skip_auto_headers',
'_request_class', '_response_class',
Expand Down
1 change: 1 addition & 0 deletions tests/test_client_session.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,7 @@ async def test_double_close(connector, create_session) -> None:


async def test_del(connector, loop) -> None:
loop.set_debug(False)
# N.B. don't use session fixture, it stores extra reference internally
session = ClientSession(connector=connector, loop=loop)
logs = []
Expand Down

0 comments on commit 8c45b4e

Please sign in to comment.