File tree Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1
1
CHANGES
2
2
=======
3
3
4
- 0.9.1 (unreleased )
4
+ 0.9.1 (08-30-2014 )
5
5
------------------
6
6
7
7
- Added MultiDict support for client request params and data #114.
8
8
9
9
- Fixed parameter type for IncompleteRead exception #118.
10
10
11
+ - Strictly require ASCII headers names and values #137
12
+
11
13
- Keep port in ProxyConnector #128.
12
14
13
15
- Python 3.4.1 compatibility #131.
Original file line number Diff line number Diff line change 1
1
# This relies on each of the submodules having an __all__ variable.
2
2
3
- __version__ = '0.9.1dev '
3
+ __version__ = '0.9.1 '
4
4
5
5
6
6
from .protocol import *
Original file line number Diff line number Diff line change 8
8
import json
9
9
import io
10
10
import inspect
11
- import itertools
12
11
import random
13
12
import time
14
13
import urllib .parse
Original file line number Diff line number Diff line change @@ -532,8 +532,9 @@ def test_bytes_data(self):
532
532
def test_files_and_bytes_data (self ):
533
533
with self .assertRaises (ValueError ):
534
534
with self .assertWarns (DeprecationWarning ):
535
- ClientRequest ('POST' , 'http://python.org/' ,
536
- data = b'binary data' , files = {'file' : b'file data' })
535
+ ClientRequest (
536
+ 'POST' , 'http://python.org/' ,
537
+ data = b'binary data' , files = {'file' : b'file data' })
537
538
538
539
@unittest .mock .patch ('aiohttp.client.aiohttp' )
539
540
def test_content_encoding (self , m_http ):
You can’t perform that action at this time.
0 commit comments