python-boto3/debian/patches/do-not-use-vendored-code.patch
Alexander GQ Gerasiov ee3eb032ab do-not-use-vendored-code.patch: Refreshed.
Signed-off-by: Alexander GQ Gerasiov <gq@cs.msu.su>
2019-01-29 00:53:47 +03:00

24 lines
637 B
Diff

From: Eric Evans <eevans@debian.org>
Date: Sun, 29 Nov 2015 12:33:59 -0600
Subject: do-not-use-vendored-code
Last-Update: Tue, 29 Jan 2019 00:51:06 +0300
Upstream botocore includes a couple of vendored modules, and boto3 depends
on them transitively. The Debian package of botocore excludes this vendored
code, and includes dependencies for the corresponding packages, so we need
to do the same, here.
--- a/boto3/compat.py
+++ b/boto3/compat.py
@@ -14,8 +14,7 @@
import os
import errno
import socket
-
-from botocore.vendored import six
+import six
if six.PY3:
# In python3, socket.error is OSError, which is too general