aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/botocore/py3/patches/01-unvendor-six.patch
blob: 64732284909a54b16f18c9289042ee486a164487 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
--- contrib/python/botocore/py3/botocore/compat.py	(index)
+++ contrib/python/botocore/py3/botocore/compat.py	(working tree)
@@ -28,1 +28,1 @@ import shlex
-from botocore.vendored import six
+import six
@@ -36,1 +36,1 @@ logger = logging.getLogger(__name__)
-from botocore.vendored.six.moves import http_client
+from six.moves import http_client
--- contrib/python/botocore/py3/botocore/httpsession.py	(index)
+++ contrib/python/botocore/py3/botocore/httpsession.py	(working tree)
@@ -62,1 +62,1 @@ except ImportError:
-from botocore.vendored.six.moves.urllib_parse import unquote
+from six.moves.urllib_parse import unquote
--- contrib/python/botocore/py3/botocore/utils.py	(index)
+++ contrib/python/botocore/py3/botocore/utils.py	(working tree)
@@ -84,1 +84,1 @@ from botocore.compat import (
-from botocore.vendored.six.moves.urllib.request import getproxies, proxy_bypass
+from six.moves.urllib.request import getproxies, proxy_bypass