fixes tests and bumps release

pull/1/head v3.13.0-1
Moisés Guimarães 2018-01-08 16:06:48 -03:00
parent b4556ba294
commit 628bf006ac
3 changed files with 5 additions and 5 deletions

View File

@ -66,7 +66,7 @@ coverage: ## check code coverage quickly with the default Python
coverage html
$(BROWSER) htmlcov/index.html
docs: ## generate Sphinx HTML documentation, including API docs
docs: install ## generate Sphinx HTML documentation, including API docs
rm -f docs/wolfcrypt.rst
rm -f docs/modules.rst
$(MAKE) -C docs clean

View File

@ -32,7 +32,7 @@ __wolfssl_version__ = "v3.13.0-stable"
#
# MAJOR.MINOR.BUILD-POST
__version__ = __wolfssl_version__[1:].replace("stable", "0")
__version__ = __wolfssl_version__[1:].replace("stable", "1")
__author__ = "wolfSSL Inc."
__email__ = "info@wolfssl.com"

View File

@ -228,7 +228,7 @@ class RsaPublic(_Rsa):
def __init__(self, key):
key = t2b(key)
super(RsaPublic, self).__init__()
_Rsa.__init__(self)
idx = _ffi.new("word32*")
idx[0] = 0
@ -288,10 +288,10 @@ class RsaPublic(_Rsa):
class RsaPrivate(RsaPublic):
def __init__(self, key):
def __init__(self, key): # pylint: disable=super-init-not-called
key = t2b(key)
super(RsaPrivate, self).__init__()
_Rsa.__init__(self) # pylint: disable=non-parent-init-called
idx = _ffi.new("word32*")
idx[0] = 0