From: Sergey Matveev Date: Fri, 21 Sep 2018 07:58:38 +0000 (+0300) Subject: PEP247 hasher hexdigest must not be an abstractmethod X-Git-Tag: 3.15~23 X-Git-Url: http://www.git.cypherpunks.ru/?p=pygost.git;a=commitdiff_plain;h=531eea38f4d5c65a6bd61d346e0a93fc21591c17 PEP247 hasher hexdigest must not be an abstractmethod --- diff --git a/NEWS b/NEWS index 6150a3d..ef5383b 100644 --- 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 c8cfe39..2c07333 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.10 +3.11 diff --git a/pygost/stubs/pygost/iface.pyi b/pygost/stubs/pygost/iface.pyi index 084f902..a5c2a85 100644 --- a/pygost/stubs/pygost/iface.pyi +++ b/pygost/stubs/pygost/iface.pyi @@ -16,5 +16,4 @@ class PEP247(metaclass=ABCMeta): @abstractmethod def digest(self) -> bytes: ... - @abstractmethod def hexdigest(self) -> str: ...