summaryrefslogtreecommitdiff
path: root/lib/Crypto/SelfTest/PublicKey/test_RSA.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Crypto/SelfTest/PublicKey/test_RSA.py')
-rw-r--r--lib/Crypto/SelfTest/PublicKey/test_RSA.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Crypto/SelfTest/PublicKey/test_RSA.py b/lib/Crypto/SelfTest/PublicKey/test_RSA.py
index 2884317..15f2a4f 100644
--- a/lib/Crypto/SelfTest/PublicKey/test_RSA.py
+++ b/lib/Crypto/SelfTest/PublicKey/test_RSA.py
@@ -463,9 +463,10 @@ def get_tests(config={}):
except ImportError:
from distutils.sysconfig import get_config_var
import inspect
+ ext_suffix = get_config_var("EXT_SUFFIX") or get_config_var("SO")
_fm_path = os.path.normpath(os.path.dirname(os.path.abspath(
inspect.getfile(inspect.currentframe())))
- +"/../../PublicKey/_fastmath"+get_config_var("SO"))
+ +"/../../PublicKey/_fastmath"+ext_suffix)
if os.path.exists(_fm_path):
raise ImportError("While the _fastmath module exists, importing "+
"it failed. This may point to the gmp or mpir shared library "+