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
45686b47
Kaydet (Commit)
45686b47
authored
Tem 27, 2011
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Correcting issue 12576 fix, which resulted in buildbot failures.
üst
f25e3d52
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
6 deletions
+3
-6
request.py
Lib/urllib/request.py
+3
-6
No files found.
Lib/urllib/request.py
Dosyayı görüntüle @
45686b47
...
@@ -1135,13 +1135,10 @@ class AbstractHTTPHandler(BaseHandler):
...
@@ -1135,13 +1135,10 @@ class AbstractHTTPHandler(BaseHandler):
try
:
try
:
h
.
request
(
req
.
get_method
(),
req
.
selector
,
req
.
data
,
headers
)
h
.
request
(
req
.
get_method
(),
req
.
selector
,
req
.
data
,
headers
)
except
socket
.
error
as
err
:
# timeout error
except
socket
.
error
as
err
:
# timeout error
h
.
close
()
raise
URLError
(
err
)
raise
URLError
(
err
)
finally
:
else
:
try
:
r
=
h
.
getresponse
()
r
=
h
.
getresponse
()
# an HTTPResponse instance
except
Exception
as
exp
:
h
.
close
()
raise
exp
r
.
url
=
req
.
get_full_url
()
r
.
url
=
req
.
get_full_url
()
# This line replaces the .msg attribute of the HTTPResponse
# This line replaces the .msg attribute of the HTTPResponse
...
...
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