Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
afd9b2b5
Kaydet (Commit)
afd9b2b5
authored
Mar 09, 2007
tarafından
Brett Cannon
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Manual backport of r54233. This will help prevent spurious Buildbot failures
by HTTPS connections that time out.
üst
1622d82c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
test_socket_ssl.py
Lib/test/test_socket_ssl.py
+7
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_socket_ssl.py
Dosyayı görüntüle @
afd9b2b5
...
@@ -27,7 +27,13 @@ def test_basic():
...
@@ -27,7 +27,13 @@ def test_basic():
print
"didn't raise TypeError"
print
"didn't raise TypeError"
socket
.
RAND_add
(
"this is a random string"
,
75.0
)
socket
.
RAND_add
(
"this is a random string"
,
75.0
)
f
=
urllib
.
urlopen
(
'https://sf.net'
)
try
:
f
=
urllib
.
urlopen
(
'https://sf.net'
)
except
IOError
,
exc
:
if
exc
.
errno
==
errno
.
ETIMEDOUT
:
raise
test_support
.
ResourceDenied
(
'HTTPS connection is timing out'
)
else
:
raise
buf
=
f
.
read
()
buf
=
f
.
read
()
f
.
close
()
f
.
close
()
...
...
Misc/NEWS
Dosyayı görüntüle @
afd9b2b5
...
@@ -356,6 +356,9 @@ Tools/Demos
...
@@ -356,6 +356,9 @@ Tools/Demos
Tests
Tests
-----
-----
- Cause test.test_socket_ssl:test_basic to raise
test.test_support.ResourceDenied when an HTTPS connection times out.
- Remove passwd.adjunct.byname from list of maps
- Remove passwd.adjunct.byname from list of maps
for test_nis.
for test_nis.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment