aboutsummaryrefslogtreecommitdiff
path: root/debian/patches/01_do-not-use-embedded-python-six.patch
diff options
context:
space:
mode:
authorDaniele Tricoli <eriol@mornie.org>2014-07-07 14:11:36 +0000
committerDaniele Tricoli <eriol@mornie.org>2014-07-07 14:11:36 +0000
commit6e8acbe5d69a3cd6c4e0209284c670ead95e44c1 (patch)
tree7e15aa4a3858424686e313882ebd94fa5f06f356 /debian/patches/01_do-not-use-embedded-python-six.patch
parenta515f76bfdcbde568e7a6ea5ee772de5f702628d (diff)
downloadpython-urllib3-6e8acbe5d69a3cd6c4e0209284c670ead95e44c1.tar
python-urllib3-6e8acbe5d69a3cd6c4e0209284c670ead95e44c1.tar.gz
Refresh 01_do-not-use-embedded-python-six.patch and 04_relax_nosetests_options.patch
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.patch10
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