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
fb8cc2f5
Kaydet (Commit)
fb8cc2f5
authored
Tem 19, 2009
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix for issue5102, timeout value propages between redirects, proxy, digest and
auth handlers. Fixed tests to reflect the same.
üst
046f7233
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
+10
-6
test_urllib2.py
Lib/test/test_urllib2.py
+6
-2
request.py
Lib/urllib/request.py
+4
-4
No files found.
Lib/test/test_urllib2.py
Dosyayı görüntüle @
fb8cc2f5
...
@@ -222,8 +222,8 @@ def test_password_manager_default_port(self):
...
@@ -222,8 +222,8 @@ def test_password_manager_default_port(self):
class
MockOpener
:
class
MockOpener
:
addheaders
=
[]
addheaders
=
[]
def
open
(
self
,
req
,
data
=
None
):
def
open
(
self
,
req
,
data
=
None
,
timeout
=
socket
.
_GLOBAL_DEFAULT_TIMEOUT
):
self
.
req
,
self
.
data
=
req
,
data
self
.
req
,
self
.
data
,
self
.
timeout
=
req
,
data
,
timeout
def
error
(
self
,
proto
,
*
args
):
def
error
(
self
,
proto
,
*
args
):
self
.
proto
,
self
.
args
=
proto
,
args
self
.
proto
,
self
.
args
=
proto
,
args
...
@@ -854,6 +854,7 @@ class HandlerTests(unittest.TestCase):
...
@@ -854,6 +854,7 @@ class HandlerTests(unittest.TestCase):
for
data
in
None
,
"blah
\n
blah
\n
"
:
for
data
in
None
,
"blah
\n
blah
\n
"
:
method
=
getattr
(
h
,
"http_error_
%
s"
%
code
)
method
=
getattr
(
h
,
"http_error_
%
s"
%
code
)
req
=
Request
(
from_url
,
data
)
req
=
Request
(
from_url
,
data
)
req
.
timeout
=
socket
.
_GLOBAL_DEFAULT_TIMEOUT
req
.
add_header
(
"Nonsense"
,
"viking=withhold"
)
req
.
add_header
(
"Nonsense"
,
"viking=withhold"
)
if
data
is
not
None
:
if
data
is
not
None
:
req
.
add_header
(
"Content-Length"
,
str
(
len
(
data
)))
req
.
add_header
(
"Content-Length"
,
str
(
len
(
data
)))
...
@@ -883,6 +884,7 @@ class HandlerTests(unittest.TestCase):
...
@@ -883,6 +884,7 @@ class HandlerTests(unittest.TestCase):
# loop detection
# loop detection
req
=
Request
(
from_url
)
req
=
Request
(
from_url
)
req
.
timeout
=
socket
.
_GLOBAL_DEFAULT_TIMEOUT
def
redirect
(
h
,
req
,
url
=
to_url
):
def
redirect
(
h
,
req
,
url
=
to_url
):
h
.
http_error_302
(
req
,
MockFile
(),
302
,
"Blah"
,
h
.
http_error_302
(
req
,
MockFile
(),
302
,
"Blah"
,
MockHeaders
({
"location"
:
url
}))
MockHeaders
({
"location"
:
url
}))
...
@@ -892,6 +894,7 @@ class HandlerTests(unittest.TestCase):
...
@@ -892,6 +894,7 @@ class HandlerTests(unittest.TestCase):
# detect infinite loop redirect of a URL to itself
# detect infinite loop redirect of a URL to itself
req
=
Request
(
from_url
,
origin_req_host
=
"example.com"
)
req
=
Request
(
from_url
,
origin_req_host
=
"example.com"
)
count
=
0
count
=
0
req
.
timeout
=
socket
.
_GLOBAL_DEFAULT_TIMEOUT
try
:
try
:
while
1
:
while
1
:
redirect
(
h
,
req
,
"http://example.com/"
)
redirect
(
h
,
req
,
"http://example.com/"
)
...
@@ -903,6 +906,7 @@ class HandlerTests(unittest.TestCase):
...
@@ -903,6 +906,7 @@ class HandlerTests(unittest.TestCase):
# detect endless non-repeating chain of redirects
# detect endless non-repeating chain of redirects
req
=
Request
(
from_url
,
origin_req_host
=
"example.com"
)
req
=
Request
(
from_url
,
origin_req_host
=
"example.com"
)
count
=
0
count
=
0
req
.
timeout
=
socket
.
_GLOBAL_DEFAULT_TIMEOUT
try
:
try
:
while
1
:
while
1
:
redirect
(
h
,
req
,
"http://example.com/
%
d"
%
count
)
redirect
(
h
,
req
,
"http://example.com/
%
d"
%
count
)
...
...
Lib/urllib/request.py
Dosyayı görüntüle @
fb8cc2f5
...
@@ -552,7 +552,7 @@ class HTTPRedirectHandler(BaseHandler):
...
@@ -552,7 +552,7 @@ class HTTPRedirectHandler(BaseHandler):
fp
.
read
()
fp
.
read
()
fp
.
close
()
fp
.
close
()
return
self
.
parent
.
open
(
new
)
return
self
.
parent
.
open
(
new
,
timeout
=
req
.
timeout
)
http_error_301
=
http_error_303
=
http_error_307
=
http_error_302
http_error_301
=
http_error_303
=
http_error_307
=
http_error_302
...
@@ -669,7 +669,7 @@ class ProxyHandler(BaseHandler):
...
@@ -669,7 +669,7 @@ class ProxyHandler(BaseHandler):
# {'http': 'ftp://proxy.example.com'}, we may end up turning
# {'http': 'ftp://proxy.example.com'}, we may end up turning
# a request for http://acme.example.com/a into one for
# a request for http://acme.example.com/a into one for
# ftp://proxy.example.com/a
# ftp://proxy.example.com/a
return
self
.
parent
.
open
(
req
)
return
self
.
parent
.
open
(
req
,
timeout
=
req
.
timeout
)
class
HTTPPasswordMgr
:
class
HTTPPasswordMgr
:
...
@@ -785,7 +785,7 @@ class AbstractBasicAuthHandler:
...
@@ -785,7 +785,7 @@ class AbstractBasicAuthHandler:
if
req
.
headers
.
get
(
self
.
auth_header
,
None
)
==
auth
:
if
req
.
headers
.
get
(
self
.
auth_header
,
None
)
==
auth
:
return
None
return
None
req
.
add_header
(
self
.
auth_header
,
auth
)
req
.
add_header
(
self
.
auth_header
,
auth
)
return
self
.
parent
.
open
(
req
)
return
self
.
parent
.
open
(
req
,
timeout
=
req
.
timeout
)
else
:
else
:
return
None
return
None
...
@@ -866,7 +866,7 @@ class AbstractDigestAuthHandler:
...
@@ -866,7 +866,7 @@ class AbstractDigestAuthHandler:
if
req
.
headers
.
get
(
self
.
auth_header
,
None
)
==
auth_val
:
if
req
.
headers
.
get
(
self
.
auth_header
,
None
)
==
auth_val
:
return
None
return
None
req
.
add_unredirected_header
(
self
.
auth_header
,
auth_val
)
req
.
add_unredirected_header
(
self
.
auth_header
,
auth_val
)
resp
=
self
.
parent
.
open
(
req
)
resp
=
self
.
parent
.
open
(
req
,
timeout
=
req
.
timeout
)
return
resp
return
resp
def
get_cnonce
(
self
,
nonce
):
def
get_cnonce
(
self
,
nonce
):
...
...
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