Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c2f2ef8

Browse files
committed
Merge from 3.5.
2 parents 68a53c5 + bddc356 commit c2f2ef8

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

.hgtags

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,8 @@ b4cbecbc0781e89a309d03b60a1f75f8499250e6 v3.4.3
147147
04f3f725896c6961212c3a12e8ac25be6958f4fa v3.4.4rc1
148148
737efcadf5a678b184e0fa431aae11276bf06648 v3.4.4
149149
3631bb4a2490292ebf81d3e947ae36da145da564 v3.4.5rc1
150+
619b61e505d0e2ccc8516b366e4ddd1971b46a6f v3.4.5
151+
3631bb4a2490292ebf81d3e947ae36da145da564 v3.4.5rc1
150152
5d4b6a57d5fd7564bf73f3db0e46fe5eeb00bcd8 v3.5.0a1
151153
0337bd7ebcb6559d69679bc7025059ad1ce4f432 v3.5.0a2
152154
82656e28b5e5c4ae48d8dd8b5f0d7968908a82b6 v3.5.0a3
@@ -163,5 +165,6 @@ cc15d736d860303b9da90d43cd32db39bab048df v3.5.0rc2
163165
948ef16a69513ba1ff15c9d7d0b012b949df4c80 v3.5.1rc1
164166
37a07cee5969e6d3672583187a73cf636ff28e1b v3.5.1
165167
68feec6488b26327a85a634605dd28eca4daa5f1 v3.5.2rc1
168+
4def2a2901a5618ea45bcc8f2a1411ef33af18ad v3.5.2
166169
5896da372fb044e38595fb74495de1e1e7c8fb3c v3.6.0a1
167170
37889342355223e2fc1438de3dc7ffcd625c60f7 v3.6.0a2

Lib/test/test_ssl.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -844,7 +844,8 @@ def test_options(self):
844844
self.assertEqual(ssl.OP_ALL | ssl.OP_NO_TLSv1 | ssl.OP_NO_SSLv3,
845845
ctx.options)
846846
ctx.options = 0
847-
self.assertEqual(0, ctx.options)
847+
# Ubuntu has OP_NO_SSLv3 forced on by default
848+
self.assertEqual(0, ctx.options & ~ssl.OP_NO_SSLv3)
848849
else:
849850
with self.assertRaises(ValueError):
850851
ctx.options = 0

0 commit comments

Comments
 (0)