Пример #1
0
 def test_cleanup(self):
     """
     :py:obj:`OpenSSL.rand.cleanup` releases the memory used by the PRNG and returns
     :py:obj:`None`.
     """
     self.assertIdentical(rand.cleanup(), None)
Пример #2
0
 def test_cleanup(self):
     """
     L{OpenSSL.rand.cleanup} releases the memory used by the PRNG and returns
     C{None}.
     """
     self.assertIdentical(rand.cleanup(), None)
Пример #3
0
 def test_cleanup(self):
     """
     `OpenSSL.rand.cleanup` releases the memory used by the PRNG and
     returns `None`.
     """
     assert rand.cleanup() is None
Пример #4
0
 def test_cleanup(self):
     """
     `OpenSSL.rand.cleanup` releases the memory used by the PRNG and
     returns `None`.
     """
     assert rand.cleanup() is None
Пример #5
0
 def test_cleanup(self):
     """
     :py:obj:`OpenSSL.rand.cleanup` releases the memory used by the PRNG and
     returns :py:obj:`None`.
     """
     self.assertIdentical(rand.cleanup(), None)