python-urllib3/python-urllib3-unbundle.patch

200 lines
5.5 KiB
Diff
Raw Normal View History

2013-09-25 18:18:34 +00:00
From 8b8da1946efc6327f8a9e8bb478cb10f05cb24b5 Mon Sep 17 00:00:00 2001
2013-08-22 18:50:14 +00:00
From: Ralph Bean <rbean@redhat.com>
2013-09-25 18:18:34 +00:00
Date: Wed, 25 Sep 2013 13:27:45 -0400
Subject: [PATCH 2/3] unbundle
2013-08-22 18:50:14 +00:00
---
2013-09-25 18:18:34 +00:00
setup.py | 1 -
test-requirements.txt | 2 ++
test/test_collections.py | 7 ++++++-
test/test_connectionpool.py | 8 +++++++-
test/test_fields.py | 3 ++-
test/test_filepost.py | 2 +-
urllib3/_collections.py | 2 +-
urllib3/connectionpool.py | 12 ++++++++++--
urllib3/fields.py | 2 +-
urllib3/filepost.py | 4 ++--
urllib3/response.py | 2 +-
urllib3/util.py | 2 +-
12 files changed, 34 insertions(+), 13 deletions(-)
2013-08-22 18:50:14 +00:00
diff --git a/setup.py b/setup.py
index 392b885..82af89c 100644
--- a/setup.py
+++ b/setup.py
@@ -45,7 +45,6 @@ setup(name='urllib3',
url='http://urllib3.readthedocs.org/',
license='MIT',
packages=['urllib3', 'dummyserver',
- 'urllib3.packages', 'urllib3.packages.ssl_match_hostname',
'urllib3.contrib',
],
requires=requirements,
diff --git a/test-requirements.txt b/test-requirements.txt
2013-09-25 18:18:34 +00:00
index f7c3a50..0fea32c 100644
2013-08-22 18:50:14 +00:00
--- a/test-requirements.txt
+++ b/test-requirements.txt
2013-09-25 18:18:34 +00:00
@@ -2,3 +2,5 @@ nose==1.3
mock==1.0.1
2013-08-22 18:50:14 +00:00
tornado==2.4.1
coverage==3.6
+six
+backports.ssl_match_hostname
diff --git a/test/test_collections.py b/test/test_collections.py
2013-09-25 18:18:34 +00:00
index b44c58a..962b6fd 100644
2013-08-22 18:50:14 +00:00
--- a/test/test_collections.py
+++ b/test/test_collections.py
2013-09-25 18:18:34 +00:00
@@ -1,7 +1,12 @@
2013-08-22 18:50:14 +00:00
import unittest
from urllib3._collections import RecentlyUsedContainer as Container
-from urllib3.packages import six
2013-09-25 18:18:34 +00:00
+
+try:
+ import six
+except ImportError:
+ from urllib3.packages import six
+
2013-08-22 18:50:14 +00:00
xrange = six.moves.xrange
diff --git a/test/test_connectionpool.py b/test/test_connectionpool.py
2013-09-25 18:18:34 +00:00
index ac1768e..c386798 100644
2013-08-22 18:50:14 +00:00
--- a/test/test_connectionpool.py
+++ b/test/test_connectionpool.py
2013-09-25 18:18:34 +00:00
@@ -6,7 +6,13 @@ from urllib3.connectionpool import (
HTTPConnectionPool,
)
from urllib3.util import Timeout
2013-08-22 18:50:14 +00:00
-from urllib3.packages.ssl_match_hostname import CertificateError
+try:
+ # python3.2+
+ from ssl import CertificateError
+except ImportError:
+ # Older python where the backport from pypi is installed
+ from backports.ssl_match_hostname import CertificateError
+
from urllib3.exceptions import (
ClosedPoolError,
EmptyPoolError,
diff --git a/test/test_fields.py b/test/test_fields.py
2013-09-25 18:18:34 +00:00
index 888c2d5..ddda1cf 100644
2013-08-22 18:50:14 +00:00
--- a/test/test_fields.py
+++ b/test/test_fields.py
2013-09-25 18:18:34 +00:00
@@ -1,7 +1,8 @@
2013-08-22 18:50:14 +00:00
import unittest
from urllib3.fields import guess_content_type, RequestField
-from urllib3.packages.six import b, u
2013-09-25 18:18:34 +00:00
+
2013-08-22 18:50:14 +00:00
+from six import b, u
class TestRequestField(unittest.TestCase):
diff --git a/test/test_filepost.py b/test/test_filepost.py
2013-09-25 18:18:34 +00:00
index ca33d61..1b884c3 100644
2013-08-22 18:50:14 +00:00
--- a/test/test_filepost.py
+++ b/test/test_filepost.py
2013-09-25 18:18:34 +00:00
@@ -2,7 +2,7 @@ import unittest
2013-08-22 18:50:14 +00:00
from urllib3.filepost import encode_multipart_formdata, iter_fields
from urllib3.fields import RequestField
-from urllib3.packages.six import b, u
+from six import b, u
BOUNDARY = '!! test boundary !!'
diff --git a/urllib3/_collections.py b/urllib3/_collections.py
index 282b8d5..9210312 100644
--- a/urllib3/_collections.py
+++ b/urllib3/_collections.py
@@ -10,7 +10,7 @@ from threading import RLock
2013-02-28 14:56:18 +00:00
try: # Python 2.7+
from collections import OrderedDict
except ImportError:
- from .packages.ordered_dict import OrderedDict
2013-08-22 18:50:14 +00:00
+ from ordereddict import OrderedDict
2013-02-28 14:56:18 +00:00
__all__ = ['RecentlyUsedContainer']
2013-08-22 18:50:14 +00:00
diff --git a/urllib3/connectionpool.py b/urllib3/connectionpool.py
2013-09-25 18:18:34 +00:00
index 551b6fd..f2c1438 100644
2013-08-22 18:50:14 +00:00
--- a/urllib3/connectionpool.py
+++ b/urllib3/connectionpool.py
2013-09-25 18:18:34 +00:00
@@ -54,8 +54,16 @@ from .exceptions import (
ReadTimeoutError,
2013-08-22 18:50:14 +00:00
ProxyError,
2013-02-28 14:56:18 +00:00
)
2013-09-25 18:18:34 +00:00
-from .packages.ssl_match_hostname import CertificateError, match_hostname
2013-02-28 14:56:18 +00:00
-from .packages import six
2013-09-25 18:18:34 +00:00
+
2013-02-28 14:56:18 +00:00
+try:
2013-03-01 18:26:23 +00:00
+ # python3.2+
+ from ssl import match_hostname, CertificateError
2013-02-28 14:56:18 +00:00
+except ImportError:
2013-08-22 18:50:14 +00:00
+ # Older python where the backport from pypi is installed
+ from backports.ssl_match_hostname import match_hostname, CertificateError
+
+import six
2013-09-25 18:18:34 +00:00
+
from .request import RequestMethods
from .response import HTTPResponse
from .util import (
2013-08-22 18:50:14 +00:00
diff --git a/urllib3/fields.py b/urllib3/fields.py
index ed01765..7a33b95 100644
--- a/urllib3/fields.py
+++ b/urllib3/fields.py
@@ -7,7 +7,7 @@
import email.utils
import mimetypes
-from .packages import six
+import six
def guess_content_type(filename, default='application/octet-stream'):
diff --git a/urllib3/filepost.py b/urllib3/filepost.py
index 4575582..bc4a161 100644
--- a/urllib3/filepost.py
+++ b/urllib3/filepost.py
@@ -10,8 +10,8 @@ import mimetypes
2013-02-28 14:56:18 +00:00
from uuid import uuid4
from io import BytesIO
-from .packages import six
-from .packages.six import b
2013-08-22 18:50:14 +00:00
+import six
+from six import b
from .fields import RequestField
2013-02-28 14:56:18 +00:00
writer = codecs.lookup('utf-8')[3]
2013-08-22 18:50:14 +00:00
diff --git a/urllib3/response.py b/urllib3/response.py
2013-09-25 18:18:34 +00:00
index 4efff5a..32b2b3e 100644
2013-08-22 18:50:14 +00:00
--- a/urllib3/response.py
+++ b/urllib3/response.py
@@ -10,7 +10,7 @@ import zlib
import io
2013-02-28 14:56:18 +00:00
from .exceptions import DecodeError
2013-08-22 18:50:14 +00:00
-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
2013-02-28 14:56:18 +00:00
2013-08-22 18:50:14 +00:00
diff --git a/urllib3/util.py b/urllib3/util.py
2013-09-25 18:18:34 +00:00
index 266c9ed..49de5fb 100644
2013-08-22 18:50:14 +00:00
--- a/urllib3/util.py
+++ b/urllib3/util.py
2013-09-25 18:18:34 +00:00
@@ -32,7 +32,7 @@ try: # Test for SSL features
2013-08-22 18:50:14 +00:00
except ImportError:
pass
2013-02-28 14:56:18 +00:00
-from .packages import six
2013-08-22 18:50:14 +00:00
+import six
2013-09-25 18:18:34 +00:00
from .exceptions import LocationParseError, SSLError, TimeoutStateError
2013-02-28 14:56:18 +00:00
2013-08-22 18:50:14 +00:00
--
1.8.3.1