[Python-checkins] cpython (merge 3.4 -> default): Issue #23345: merge from 3.4

ned.deily python-checkins at python.org
Thu Feb 5 07:25:47 CET 2015


https://hg.python.org/cpython/rev/62b322b82f00
changeset:   94514:62b322b82f00
parent:      94509:a7ddddfe9e36
parent:      94513:52932cd7f003
user:        Ned Deily <nad at acm.org>
date:        Thu Feb 05 17:24:00 2015 +1100
summary:
  Issue #23345: merge from 3.4

files:
  Lib/test/test_ssl.py |  2 +-
  Misc/NEWS            |  3 +++
  2 files changed, 4 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
@@ -306,7 +306,7 @@
         self.assertGreaterEqual(fix, 0)
         self.assertLess(fix, 256)
         self.assertGreaterEqual(patch, 0)
-        self.assertLessEqual(patch, 26)
+        self.assertLessEqual(patch, 63)
         self.assertGreaterEqual(status, 0)
         self.assertLessEqual(status, 15)
         # Version string as returned by {Open,Libre}SSL, the format might change
diff --git a/Misc/NEWS b/Misc/NEWS
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1727,6 +1727,9 @@
 
 - Issue #23211: Workaround test_logging failure on some OS X 10.6 systems.
 
+- Issue #23345: Prevent test_ssl failures with large OpenSSL patch level
+  values (like 0.9.8zc).
+
 Tools/Demos
 -----------
 

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


More information about the Python-checkins mailing list