summaryrefslogtreecommitdiff
path: root/Lib/crypt.py
diff options
context:
space:
mode:
authorshireenrao <shireenrao@gmail.com>2019-08-08 16:02:49 -0400
committerPaul Moore <p.f.moore@gmail.com>2019-08-08 21:02:49 +0100
commitf4e725f224b864bf9bf405ff7f863cda46fca1cd (patch)
tree694f5ea767d27a66344401171f1bfc494c48581f /Lib/crypt.py
parent2a570af12ac5e4ac5575a68f8739b31c24d01367 (diff)
downloadcpython-git-f4e725f224b864bf9bf405ff7f863cda46fca1cd.tar.gz
bpo-25172: Raise appropriate ImportError msg when crypt module used on Windows (GH-15149)
Diffstat (limited to 'Lib/crypt.py')
-rw-r--r--Lib/crypt.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/Lib/crypt.py b/Lib/crypt.py
index b0e47f430c..8846602d76 100644
--- a/Lib/crypt.py
+++ b/Lib/crypt.py
@@ -1,6 +1,15 @@
"""Wrapper to the POSIX crypt library call and associated functionality."""
-import _crypt
+import sys as _sys
+
+try:
+ import _crypt
+except ModuleNotFoundError:
+ if _sys.platform == 'win32':
+ raise ImportError("The crypt module is not supported on Windows")
+ else:
+ raise ImportError("The required _crypt module was not built as part of CPython")
+
import string as _string
from random import SystemRandom as _SystemRandom
from collections import namedtuple as _namedtuple