diff options
Diffstat (limited to 'debian/patches/01_do-not-use-embedded-python-six.patch')
-rw-r--r-- | debian/patches/01_do-not-use-embedded-python-six.patch | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/debian/patches/01_do-not-use-embedded-python-six.patch b/debian/patches/01_do-not-use-embedded-python-six.patch index f95a1e1..024180f 100644 --- a/debian/patches/01_do-not-use-embedded-python-six.patch +++ b/debian/patches/01_do-not-use-embedded-python-six.patch @@ -1,7 +1,7 @@ Description: Do not use embedded copy of python-six. Author: Daniele Tricoli <eriol@mornie.org> Forwarded: not-needed -Last-Update: 2014-05-24 +Last-Update: 2014-07-7 --- a/test/test_collections.py +++ b/test/test_collections.py @@ -16,7 +16,7 @@ Last-Update: 2014-05-24 --- a/urllib3/connectionpool.py +++ b/urllib3/connectionpool.py -@@ -32,7 +32,7 @@ +@@ -31,7 +31,7 @@ ProxyError, ) from .packages.ssl_match_hostname import CertificateError @@ -27,7 +27,7 @@ Last-Update: 2014-05-24 DummyConnection, --- a/urllib3/filepost.py +++ b/urllib3/filepost.py -@@ -10,8 +10,8 @@ +@@ -9,8 +9,8 @@ from uuid import uuid4 from io import BytesIO @@ -43,7 +43,7 @@ Last-Update: 2014-05-24 @@ -11,7 +11,7 @@ from ._collections import HTTPHeaderDict - from .exceptions import DecodeError + from .exceptions import DecodeError, ReadTimeoutError -from .packages.six import string_types as basestring, binary_type +from six import string_types as basestring, binary_type from .util import is_fp_closed @@ -106,7 +106,7 @@ Last-Update: 2014-05-24 __all__ = ['RecentlyUsedContainer', 'HTTPHeaderDict'] --- a/urllib3/connection.py +++ b/urllib3/connection.py -@@ -39,7 +39,7 @@ +@@ -34,7 +34,7 @@ ConnectTimeoutError, ) from .packages.ssl_match_hostname import match_hostname |