mirror of
https://github.com/python/cpython.git
synced 2025-07-28 13:44:43 +00:00
Merged revisions 83209 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83209 | senthil.kumaran | 2010-07-28 21:57:56 +0530 (Wed, 28 Jul 2010) | 3 lines Fix Issue6325 - robotparse to honor urls with query strings. ........
This commit is contained in:
parent
946963fdc5
commit
a4f79f97db
2 changed files with 17 additions and 1 deletions
|
@ -202,6 +202,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):
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue