summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Windows
diff options
context:
space:
mode:
authorshireenrao <shireenrao@gmail.com>2019-08-08 20:02:49 (GMT)
committerPaul Moore <p.f.moore@gmail.com>2019-08-08 20:02:49 (GMT)
commitf4e725f224b864bf9bf405ff7f863cda46fca1cd (patch)
tree694f5ea767d27a66344401171f1bfc494c48581f /Misc/NEWS.d/next/Windows
parent2a570af12ac5e4ac5575a68f8739b31c24d01367 (diff)
downloadcpython-f4e725f224b864bf9bf405ff7f863cda46fca1cd.zip
cpython-f4e725f224b864bf9bf405ff7f863cda46fca1cd.tar.gz
cpython-f4e725f224b864bf9bf405ff7f863cda46fca1cd.tar.bz2
bpo-25172: Raise appropriate ImportError msg when crypt module used on Windows (GH-15149)
Diffstat (limited to 'Misc/NEWS.d/next/Windows')
-rw-r--r--Misc/NEWS.d/next/Windows/2019-08-06-18-09-18.bpo-25172.Akreij.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Windows/2019-08-06-18-09-18.bpo-25172.Akreij.rst b/Misc/NEWS.d/next/Windows/2019-08-06-18-09-18.bpo-25172.Akreij.rst
new file mode 100644
index 0000000..47106d8
--- /dev/null
+++ b/Misc/NEWS.d/next/Windows/2019-08-06-18-09-18.bpo-25172.Akreij.rst
@@ -0,0 +1 @@
+Trying to import the :mod:`crypt` module on Windows will result in an :exc:`ImportError` with a message explaining that the module isn't supported on Windows. On other platforms, if the underlying ``_crypt`` module is not available, the ImportError will include a message explaining the problem.