summaryrefslogtreecommitdiff
path: root/rsa/common.py
diff options
context:
space:
mode:
authorMichael Manganiello <adamantike@users.noreply.github.com>2017-01-17 13:33:08 -0300
committerSybren A. Stüvel <sybren@stuvel.eu>2017-01-17 17:33:08 +0100
commit2d81e0fe4b89398876da8a9027d1465a5bb4434b (patch)
treed37949454e2a741e21de3993113b5f08c30e12f1 /rsa/common.py
parentd3727172cedb409613739be6af197c3b03cc163d (diff)
downloadrsa-git-2d81e0fe4b89398876da8a9027d1465a5bb4434b.tar.gz
Use iterative zip in Python 2 (#85)
Good catch, thanks!
Diffstat (limited to 'rsa/common.py')
-rw-r--r--rsa/common.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/rsa/common.py b/rsa/common.py
index 4f8c0d9..7c8a082 100644
--- a/rsa/common.py
+++ b/rsa/common.py
@@ -14,6 +14,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
+from rsa._compat import zip
+
"""Common functionality shared by several modules."""