From 307d60e402418a58ab62be84462890ded735dfbb Mon Sep 17 00:00:00 2001 From: Hubert Kario Date: Fri, 29 Nov 2019 16:00:32 +0100 Subject: [PATCH] fix module name in example we don't implement `keys` module, we do implement `ecdsa.keys` module so be precise about it in NEWS file --- NEWS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 6d3ef9e8..253b9fd6 100644 --- a/NEWS +++ b/NEWS @@ -48,7 +48,7 @@ added. Deprecations: Python 2.5 is not supported any more - dead code removal. -`from keys import *` will now import only objects defined in that module. +`from ecdsa.keys import *` will now import only objects defined in that module. Trying to decode a malformed point using `VerifyingKey.from_string` will rise now the `MalformedPointError` exception (that inherits from `AssertionError` but is not it).