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
ce8f5ded
Kaydet (Commit)
ce8f5ded
authored
Mar 22, 2015
tarafından
Ned Deily
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #22289: Prevent test_urllib2net failures due to ftp connection timeout.
üst
d357b89f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
__init__.py
Lib/test/support/__init__.py
+2
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/test/support/__init__.py
Dosyayı görüntüle @
ce8f5ded
...
...
@@ -1327,7 +1327,8 @@ def transient_internet(resource_name, *, timeout=30.0, errnos=()):
(
isinstance
(
err
,
urllib
.
error
.
HTTPError
)
and
500
<=
err
.
code
<=
599
)
or
(
isinstance
(
err
,
urllib
.
error
.
URLError
)
and
"ConnectionRefusedError"
in
err
.
reason
)
or
((
"ConnectionRefusedError"
in
err
.
reason
)
or
(
"TimeoutError"
in
err
.
reason
)))
or
n
in
captured_errnos
):
if
not
verbose
:
sys
.
stderr
.
write
(
denied
.
args
[
0
]
+
"
\n
"
)
...
...
Misc/NEWS
Dosyayı görüntüle @
ce8f5ded
...
...
@@ -455,6 +455,8 @@ Tests
-
Issue
#
23345
:
Prevent
test_ssl
failures
with
large
OpenSSL
patch
level
values
(
like
0.9.8
zc
).
-
Issue
#
22289
:
Prevent
test_urllib2net
failures
due
to
ftp
connection
timeout
.
Build
-----
...
...
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