Esempio n. 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)
Esempio n. 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)
Esempio n. 3
0
 def test_cleanup(self):
     """
     `OpenSSL.rand.cleanup` releases the memory used by the PRNG and
     returns `None`.
     """
     assert rand.cleanup() is None
Esempio n. 4
0
 def test_cleanup(self):
     """
     `OpenSSL.rand.cleanup` releases the memory used by the PRNG and
     returns `None`.
     """
     assert rand.cleanup() is None
Esempio n. 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)