]> Cypherpunks.ru repositories - pygost.git/commitdiff
PEP247 hasher hexdigest must not be an abstractmethod
authorSergey Matveev <stargrave@stargrave.org>
Fri, 21 Sep 2018 07:58:38 +0000 (10:58 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Sun, 9 Dec 2018 10:01:00 +0000 (13:01 +0300)
NEWS
VERSION
pygost/stubs/pygost/iface.pyi

diff --git a/NEWS b/NEWS
index 6150a3df962d3fcde8ab1138efd59cd99245710f..ef5383b44c048f3f47d5357e369ee68057500bb4 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
+3.11:
+    Fixed PEP247 typing stub with invalid hexdigest method.
+
 3.10:
     Additional missing 34.11-* typing stubs.
 
diff --git a/VERSION b/VERSION
index c8cfe3959183f8e9a50f83f54cd723f2dc9c252d..2c0733315e415bfb5e5b353f9996ecd964d395b2 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-3.10
+3.11
index 084f902b1d911739021976d873a12213fae86b37..a5c2a8537049c56f3c726258d0aafd48a5f3aae3 100644 (file)
@@ -16,5 +16,4 @@ class PEP247(metaclass=ABCMeta):
     @abstractmethod
     def digest(self) -> bytes: ...
 
-    @abstractmethod
     def hexdigest(self) -> str: ...