diff options
author | Antonio Gutierrez <chibby0ne@gmail.com> | 2019-10-08 04:22:17 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2019-10-08 04:22:17 (GMT) |
commit | 0d3fe8ae4961bf551e7d5e42559e2ede1a08fd7c (patch) | |
tree | 8ddcbaae6fdebf3694b166b58995aa849b812f3d /Misc | |
parent | 4d5f94b8cd20f804c7868c5395a15aa6032f874c (diff) | |
download | cpython-0d3fe8ae4961bf551e7d5e42559e2ede1a08fd7c.zip cpython-0d3fe8ae4961bf551e7d5e42559e2ede1a08fd7c.tar.gz cpython-0d3fe8ae4961bf551e7d5e42559e2ede1a08fd7c.tar.bz2 |
closes bpo-38402: Check error of primitive crypt/crypt_r. (GH-16599)
Checks also for encryption algorithms methods not supported in different
OSs.
Signed-off-by: Antonio Gutierrez <chibby0ne@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2019-10-05-19-36-16.bpo-38402.EZuzgK.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-10-05-19-36-16.bpo-38402.EZuzgK.rst b/Misc/NEWS.d/next/Core and Builtins/2019-10-05-19-36-16.bpo-38402.EZuzgK.rst new file mode 100644 index 0000000..8331500 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2019-10-05-19-36-16.bpo-38402.EZuzgK.rst @@ -0,0 +1 @@ +Check the error from the system's underlying ``crypt`` or ``crypt_r``. |