[Python-checkins] cpython: remove apparently wrong assertion about des bit size

benjamin.peterson python-checkins at python.org
Wed Jan 7 18:35:27 CET 2015


https://hg.python.org/cpython/rev/9c68831ff153
changeset:   94062:9c68831ff153
user:        Benjamin Peterson <benjamin at python.org>
date:        Wed Jan 07 11:33:51 2015 -0600
summary:
  remove apparently wrong assertion about des bit size

files:
  Lib/test/test_ssl.py |  1 -
  1 files changed, 0 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_ssl.py b/Lib/test/test_ssl.py
--- a/Lib/test/test_ssl.py
+++ b/Lib/test/test_ssl.py
@@ -3172,7 +3172,6 @@
             self.assertGreater(len(ciphers), 0)
             for name, tls_version, bits in ciphers:
                 self.assertIn("DES-CBC3-", name)
-                self.assertEqual(bits, 112)
 
         def test_read_write_after_close_raises_valuerror(self):
             context = ssl.SSLContext(ssl.PROTOCOL_SSLv23)

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list