]> Cypherpunks.ru repositories - pygost.git/commitdiff
Fix 34.13 mypy stub 2.4
authorSergey Matveev <stargrave@stargrave.org>
Thu, 13 Oct 2016 08:14:49 +0000 (11:14 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Thu, 13 Oct 2016 08:14:49 +0000 (11:14 +0300)
NEWS
VERSION
pygost/stubs/pygost/gost3413.pyi

diff --git a/NEWS b/NEWS
index 14759c3cacc7913a6035e3c6f056852769d028e9..b951650fabd5c2529ed4ef996e8a598040c4e06e 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,6 @@
+2.4:
+    Fixed 34.13 mypy stub
+
 2.3:
     Typo and pylint fixes
 
diff --git a/VERSION b/VERSION
index bb576dbde10fdad22759c170d482813d5e873c1e..6b4950e3de2f6c99801a4f5e2ffa01669f358572 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.3
+2.4
index 590cb9e534ce4bdcfbf503a90f15e191ceed62bc..dddb205ba94192f8c7959ab4de51415aca2525ba 100644 (file)
@@ -1,10 +1,10 @@
-def pad_size(int, int) -> int: ...
+def pad_size(data_size: int, blocksize: int) -> int: ...
 
 
-def pad1(bytes, int) -> bytes: ...
+def pad1(data: bytes, blocksize: int) -> bytes: ...
 
 
-def pad2(bytes, int) -> bytes: ...
+def pad2(data: bytes, blocksize: int) -> bytes: ...
 
 
-def pad3(bytes, int) -> bytes: ...
+def pad3(data: bytes, blocksize: int) -> bytes: ...