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
dca5b862
Kaydet (Commit)
dca5b862
authored
Ara 17, 2010
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix Issue9721 - urljoin behavior when the relative url starts with ';'
üst
b25a7918
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
test_urlparse.py
Lib/test/test_urlparse.py
+3
-0
parse.py
Lib/urllib/parse.py
+2
-7
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/test/test_urlparse.py
Dosyayı görüntüle @
dca5b862
...
...
@@ -327,6 +327,9 @@ class UrlParseTestCase(unittest.TestCase):
#self.checkJoin(RFC3986_BASE, 'http:g','http:g') # strict parser
self
.
checkJoin
(
RFC3986_BASE
,
'http:g'
,
'http://a/b/c/g'
)
#relaxed parser
# Test for issue9721
self
.
checkJoin
(
'http://a/b/c/de'
,
';x'
,
'http://a/b/c/;x'
)
def
test_urljoins
(
self
):
self
.
checkJoin
(
SIMPLE_BASE
,
'g:h'
,
'g:h'
)
self
.
checkJoin
(
SIMPLE_BASE
,
'http:g'
,
'http://a/b/c/g'
)
...
...
Lib/urllib/parse.py
Dosyayı görüntüle @
dca5b862
...
...
@@ -411,14 +411,9 @@ def urljoin(base, url, allow_fragments=True):
if
path
[:
1
]
==
'/'
:
return
_coerce_result
(
urlunparse
((
scheme
,
netloc
,
path
,
params
,
query
,
fragment
)))
if
not
path
:
if
not
path
and
not
params
:
path
=
bpath
if
not
params
:
params
=
bparams
else
:
path
=
path
[:
-
1
]
return
_coerce_result
(
urlunparse
((
scheme
,
netloc
,
path
,
params
,
query
,
fragment
)))
params
=
bparams
if
not
query
:
query
=
bquery
return
_coerce_result
(
urlunparse
((
scheme
,
netloc
,
path
,
...
...
Misc/NEWS
Dosyayı görüntüle @
dca5b862
...
...
@@ -19,6 +19,8 @@ Core and Builtins
Library
-------
- Issue #9721: Fix the behavior of urljoin when the relative url starts with a
';' character. Patch by Wes Chow.
- Issue #10714: Limit length of incoming request in http.server to 65536 bytes
for security reasons. Initial patch by Ross Lagerwall.
...
...
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