Skip to content

Commit

Permalink
backport http.cookies module for python3.4.2 #1566
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikolay Kim committed Feb 1, 2017
1 parent d9d63d7 commit 6ba2691
Show file tree
Hide file tree
Showing 6 changed files with 606 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ services:
language: python

python:
- 3.4
- 3.4.2
- 3.4.3
- 3.5
- '3.6-dev'
- 'nightly'
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ CHANGES
- Allow users to specify what should happen to decoding errors
when calling a responses `text()` method #1542

- Backport std module http.cookies for python3.4.2 #1566

- Return 504 if request handle raises TimeoutError.

- Refactor how we use keep-alive and clone lingering timeouts.
Expand Down
12 changes: 12 additions & 0 deletions DEPRECATIONS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
Deprecations
^^^^^^^^^^^^

python 3.4
----------

Waiting until major linux distributions drop python 3.4 support. Estimation fall of 2017.

* drop aiohttp/backport_cookies.py module with python3.4 support as well.

Date: 01/01/2018

2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ flake: .flake
$(shell find benchmark -type f) \
$(shell find examples -type f) \
$(shell find demos -type f)
@flake8 aiohttp
@flake8 aiohttp --exclude=aiohttp/backport_cookies.py
@if python -c "import sys; sys.exit(sys.version_info < (3,5))"; then \
flake8 examples tests demos benchmark && \
python setup.py check -rms; \
Expand Down
Loading

0 comments on commit 6ba2691

Please sign in to comment.