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
ade40976
Kaydet (Commit)
ade40976
authored
Şub 04, 2016
tarafından
Martin Panter
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #12923: Reset FancyURLopener's redirect counter even on exception
Based on patches by Brian Brazil and Daniel Rocco.
üst
bf3b8978
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
34 additions
and
12 deletions
+34
-12
test_urllib.py
Lib/test/test_urllib.py
+17
-1
urllib.py
Lib/urllib.py
+13
-11
ACKS
Misc/ACKS
+1
-0
NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_urllib.py
Dosyayı görüntüle @
ade40976
...
@@ -209,10 +209,26 @@ Connection: close
...
@@ -209,10 +209,26 @@ Connection: close
Content-Type: text/html; charset=iso-8859-1
Content-Type: text/html; charset=iso-8859-1
"""
)
"""
)
try
:
try
:
self
.
assertRaises
(
IOError
,
urllib
.
urlopen
,
"http://python.org/"
)
msg
=
"Redirection to url 'file:"
with
self
.
assertRaisesRegexp
(
IOError
,
msg
):
urllib
.
urlopen
(
"http://python.org/"
)
finally
:
finally
:
self
.
unfakehttp
()
self
.
unfakehttp
()
def
test_redirect_limit_independent
(
self
):
# Ticket #12923: make sure independent requests each use their
# own retry limit.
for
i
in
range
(
urllib
.
FancyURLopener
()
.
maxtries
):
self
.
fakehttp
(
b
'''HTTP/1.1 302 Found
Location: file://guidocomputer.athome.com:/python/license
Connection: close
'''
)
try
:
self
.
assertRaises
(
IOError
,
urllib
.
urlopen
,
"http://something"
)
finally
:
self
.
unfakehttp
()
def
test_empty_socket
(
self
):
def
test_empty_socket
(
self
):
# urlopen() raises IOError if the underlying socket does not send any
# urlopen() raises IOError if the underlying socket does not send any
# data. (#1680230)
# data. (#1680230)
...
...
Lib/urllib.py
Dosyayı görüntüle @
ade40976
...
@@ -629,18 +629,20 @@ class FancyURLopener(URLopener):
...
@@ -629,18 +629,20 @@ class FancyURLopener(URLopener):
def
http_error_302
(
self
,
url
,
fp
,
errcode
,
errmsg
,
headers
,
data
=
None
):
def
http_error_302
(
self
,
url
,
fp
,
errcode
,
errmsg
,
headers
,
data
=
None
):
"""Error 302 -- relocated (temporarily)."""
"""Error 302 -- relocated (temporarily)."""
self
.
tries
+=
1
self
.
tries
+=
1
if
self
.
maxtries
and
self
.
tries
>=
self
.
maxtries
:
try
:
if
hasattr
(
self
,
"http_error_500"
):
if
self
.
maxtries
and
self
.
tries
>=
self
.
maxtries
:
meth
=
self
.
http_error_500
if
hasattr
(
self
,
"http_error_500"
):
else
:
meth
=
self
.
http_error_500
meth
=
self
.
http_error_default
else
:
meth
=
self
.
http_error_default
return
meth
(
url
,
fp
,
500
,
"Internal Server Error: Redirect Recursion"
,
headers
)
result
=
self
.
redirect_internal
(
url
,
fp
,
errcode
,
errmsg
,
headers
,
data
)
return
result
finally
:
self
.
tries
=
0
self
.
tries
=
0
return
meth
(
url
,
fp
,
500
,
"Internal Server Error: Redirect Recursion"
,
headers
)
result
=
self
.
redirect_internal
(
url
,
fp
,
errcode
,
errmsg
,
headers
,
data
)
self
.
tries
=
0
return
result
def
redirect_internal
(
self
,
url
,
fp
,
errcode
,
errmsg
,
headers
,
data
):
def
redirect_internal
(
self
,
url
,
fp
,
errcode
,
errmsg
,
headers
,
data
):
if
'location'
in
headers
:
if
'location'
in
headers
:
...
...
Misc/ACKS
Dosyayı görüntüle @
ade40976
...
@@ -1154,6 +1154,7 @@ Carl Robben
...
@@ -1154,6 +1154,7 @@ Carl Robben
Mark Roberts
Mark Roberts
Andy Robinson
Andy Robinson
Jim Robinson
Jim Robinson
Daniel Rocco
Mark Roddy
Mark Roddy
Kevin Rodgers
Kevin Rodgers
Sean Rodman
Sean Rodman
...
...
Misc/NEWS
Dosyayı görüntüle @
ade40976
...
@@ -48,6 +48,9 @@ Core and Builtins
...
@@ -48,6 +48,9 @@ Core and Builtins
Library
Library
-------
-------
-
Issue
#
12923
:
Reset
FancyURLopener
's redirect counter even if there is an
exception. Based on patches by Brian Brazil and Daniel Rocco.
- Issue #25945: Fixed a crash when unpickle the functools.partial object with
- Issue #25945: Fixed a crash when unpickle the functools.partial object with
wrong state. Fixed a leak in failed functools.partial constructor.
wrong state. Fixed a leak in failed functools.partial constructor.
"args" and "keywords" attributes of functools.partial have now always types
"args" and "keywords" attributes of functools.partial have now always types
...
...
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