summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-10-02 21:00:39 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-10-02 21:00:39 (GMT)
commit6661d885a34b355200b8ee6bd559af0a5cfc9c8b (patch)
treec0f0f5a78f983875d4320d62ada74fee9ce62644 /Misc
parent4b5d8018dfc32a6edc73339787ed4530749ea90c (diff)
downloadcpython-6661d885a34b355200b8ee6bd559af0a5cfc9c8b.zip
cpython-6661d885a34b355200b8ee6bd559af0a5cfc9c8b.tar.gz
cpython-6661d885a34b355200b8ee6bd559af0a5cfc9c8b.tar.bz2
Issue #25287: Don't add crypt.METHOD_CRYPT to crypt.methods if it's not
supported. Check if it is supported, it may not be supported on OpenBSD for example.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index b43073f..8aad689 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -40,6 +40,10 @@ Core and Builtins
Library
-------
+- Issue #25287: Don't add crypt.METHOD_CRYPT to crypt.methods if it's not
+ supported. Check if it is supported, it may not be supported on OpenBSD for
+ example.
+
- Issue #23600: Default implementation of tzinfo.fromutc() was returning
wrong results in some cases.