diff options
Diffstat (limited to 'python/rsa/tests/constants.py')
-rw-r--r-- | python/rsa/tests/constants.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/python/rsa/tests/constants.py b/python/rsa/tests/constants.py new file mode 100644 index 000000000..6a0d08183 --- /dev/null +++ b/python/rsa/tests/constants.py @@ -0,0 +1,9 @@ +# -*- coding: utf-8 -*- + +from rsa._compat import have_python3 + +if have_python3: + from py3kconstants import * +else: + from py2kconstants import * + |