Ejemplo 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)
Ejemplo 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)
Ejemplo 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
Ejemplo 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
Ejemplo 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)