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
d3f193fe
Kaydet (Commit)
d3f193fe
authored
Mar 20, 2001
tarafından
Moshe Zadka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
* Fixing the password-proxy bug
* Not sending content-type and content-length twice
üst
6abce91a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
urllib2.py
Lib/urllib2.py
+8
-7
No files found.
Lib/urllib2.py
Dosyayı görüntüle @
d3f193fe
...
...
@@ -477,8 +477,8 @@ class ProxyHandler(BaseHandler):
host
,
XXX
=
splithost
(
r_type
)
if
'@'
in
host
:
user_pass
,
host
=
host
.
split
(
'@'
,
1
)
user_pass
=
base64
.
encode
_string
(
unquote
(
user_passw
))
.
strip
()
req
.
add
header
(
'Proxy-Authorization'
,
user_pass
)
user_pass
=
base64
.
encode
string
(
unquote
(
user_pass
))
.
strip
()
req
.
add
_header
(
'Proxy-Authorization'
,
'Basic '
+
user_pass
)
host
=
unquote
(
host
)
req
.
set_proxy
(
host
,
type
)
if
orig_type
==
type
:
...
...
@@ -781,7 +781,7 @@ def encode_digest(digest):
class
AbstractHTTPHandler
(
BaseHandler
):
def
do_open
(
self
,
http_class
,
req
):
host
=
req
.
get_host
()
host
=
urlparse
.
urlparse
(
req
.
get_full_url
())[
1
]
if
not
host
:
raise
URLError
(
'no host given'
)
...
...
@@ -790,15 +790,16 @@ class AbstractHTTPHandler(BaseHandler):
if
req
.
has_data
():
data
=
req
.
get_data
()
h
.
putrequest
(
'POST'
,
req
.
get_selector
())
h
.
putheader
(
'Content-type'
,
'application/x-www-form-urlencoded'
)
h
.
putheader
(
'Content-length'
,
'
%
d'
%
len
(
data
))
if
not
req
.
headers
.
has_key
(
'Content-type'
):
h
.
putheader
(
'Content-type'
,
'application/x-www-form-urlencoded'
)
if
not
req
.
headers
.
has_key
(
'Content-length'
):
h
.
putheader
(
'Content-length'
,
'
%
d'
%
len
(
data
))
else
:
h
.
putrequest
(
'GET'
,
req
.
get_selector
())
except
socket
.
error
,
err
:
raise
URLError
(
err
)
# XXX proxies would have different host here
h
.
putheader
(
'Host'
,
host
)
for
args
in
self
.
parent
.
addheaders
:
h
.
putheader
(
*
args
)
...
...
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