コード例 #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
ファイル: test_rand.py プロジェクト: pyca/pyopenssl
 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
ファイル: test_rand.py プロジェクト: Jicheng-Yan/pyopenssl
 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)