aboutsummaryrefslogtreecommitdiff
path: root/rsa/_compat.py
diff options
context:
space:
mode:
Diffstat (limited to 'rsa/_compat.py')
-rw-r--r--rsa/_compat.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/rsa/_compat.py b/rsa/_compat.py
index 3c4eb81..c654770 100644
--- a/rsa/_compat.py
+++ b/rsa/_compat.py
@@ -16,7 +16,6 @@
"""Python compatibility wrappers."""
-
from __future__ import absolute_import
import sys
@@ -42,7 +41,6 @@ else:
# Else we just assume 64-bit processor keeping up with modern times.
MACHINE_WORD_SIZE = 64
-
try:
# < Python3
unicode_type = unicode
@@ -75,7 +73,6 @@ except NameError:
# Python 2.5
bytes_type = str
-
# To avoid calling b() multiple times in tight loops.
ZERO_BYTE = b('\x00')
EMPTY_BYTE = b('')