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
3f8ab965
Kaydet (Commit)
3f8ab965
authored
Tem 28, 2010
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix Issue6325 - robotparse to honor urls with query strings.
üst
96a60ae9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
2 deletions
+15
-2
test_robotparser.py
Lib/test/test_robotparser.py
+11
-0
robotparser.py
Lib/urllib/robotparser.py
+4
-2
No files found.
Lib/test/test_robotparser.py
Dosyayı görüntüle @
3f8ab965
...
...
@@ -205,6 +205,17 @@ bad = ['/folder1/anotherfile.html']
RobotTest
(
13
,
doc
,
good
,
bad
,
agent
=
"googlebot"
)
# 14. For issue #6325 (query string support)
doc
=
"""
User-agent: *
Disallow: /some/path?name=value
"""
good
=
[
'/some/path'
]
bad
=
[
'/some/path?name=value'
]
RobotTest
(
14
,
doc
,
good
,
bad
)
class
NetworkTestCase
(
unittest
.
TestCase
):
...
...
Lib/urllib/robotparser.py
Dosyayı görüntüle @
3f8ab965
...
...
@@ -129,8 +129,10 @@ class RobotFileParser:
return
True
# search for given user agent matches
# the first match counts
url
=
urllib
.
parse
.
quote
(
urllib
.
parse
.
urlparse
(
urllib
.
parse
.
unquote
(
url
))[
2
])
parsed_url
=
urllib
.
parse
.
urlparse
(
urllib
.
parse
.
unquote
(
url
))
url
=
urllib
.
parse
.
urlunparse
((
''
,
''
,
parsed_url
.
path
,
parsed_url
.
params
,
parsed_url
.
query
,
parsed_url
.
fragment
))
url
=
urllib
.
parse
.
quote
(
url
)
if
not
url
:
url
=
"/"
for
entry
in
self
.
entries
:
...
...
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