Changes WRT small stack.

This commit is contained in:
jrblixt
2017-06-13 09:53:37 -06:00
parent e345471b21
commit 0ef1129f18
58 changed files with 8751 additions and 916 deletions

View File

@@ -26,8 +26,6 @@ Classes
.. autoclass:: Aes
.. autoclass:: Des3
Example
-------

View File

@@ -39,7 +39,11 @@ class Random(object):
def __del__(self):
if self.native_object:
_lib.wc_FreeRng(self.native_object)
try:
_lib.wc_FreeRng(self.native_object)
except AttributeError:
# Can occur during interpreter shutdown
pass
def byte(self):