Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
241a0437
Commit
241a0437
authored
Apr 20, 2010
by
Senthil Kumaran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Issue2987 - Added additional Invalid URL and changed the Invalid URL checking code for better.
parent
c166b402
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
6 deletions
+9
-6
Lib/test/test_urlparse.py
Lib/test/test_urlparse.py
+1
-0
Lib/urlparse.py
Lib/urlparse.py
+8
-6
No files found.
Lib/test/test_urlparse.py
View file @
241a0437
...
...
@@ -272,6 +272,7 @@ class UrlParseTestCase(unittest.TestCase):
for
invalid_url
in
[
'http://::12.34.56.78]/'
,
'http://[::1/foo/'
,
'http://[::1/foo/bad]/bad'
,
'http://[::ffff:12.34.56.78'
]:
self
.
assertRaises
(
ValueError
,
lambda
:
urlparse
.
urlparse
(
invalid_url
).
hostname
)
self
.
assertRaises
(
ValueError
,
lambda
:
urlparse
.
urlparse
(
invalid_url
))
...
...
Lib/urlparse.py
View file @
241a0437
...
...
@@ -90,8 +90,6 @@ class ResultMixin(object):
netloc
=
self
.
netloc
.
split
(
'@'
)[
-
1
]
if
'['
in
netloc
and
']'
in
netloc
:
return
netloc
.
split
(
']'
)[
0
][
1
:].
lower
()
elif
'['
in
netloc
or
']'
in
netloc
:
raise
ValueError
(
"Invalid IPv6 hostname"
)
elif
':'
in
netloc
:
return
netloc
.
split
(
':'
)[
0
].
lower
()
elif
netloc
==
''
:
...
...
@@ -151,10 +149,6 @@ def _splitparams(url):
def
_splitnetloc
(
url
,
start
=
0
):
delim
=
len
(
url
)
# position of end of domain part of url, default is end
if
'['
in
url
:
# check for invalid IPv6 URL
if
not
']'
in
url
:
raise
ValueError
(
"Invalid IPv6 URL"
)
elif
']'
in
url
:
if
not
'['
in
url
:
raise
ValueError
(
"Invalid IPv6 URL"
)
for
c
in
'/?#'
:
# look for delimiters; the order is NOT important
wdelim
=
url
.
find
(
c
,
start
)
# find first of this delim
if
wdelim
>=
0
:
# if found
...
...
@@ -182,6 +176,10 @@ def urlsplit(url, scheme='', allow_fragments=True):
url
=
url
[
i
+
1
:]
if
url
[:
2
]
==
'//'
:
netloc
,
url
=
_splitnetloc
(
url
,
2
)
if
'['
in
netloc
:
if
not
']'
in
netloc
:
raise
ValueError
(
"Invalid IPv6 URL"
)
if
']'
in
netloc
:
if
not
'['
in
netloc
:
raise
ValueError
(
"Invalid IPv6 URL"
)
if
allow_fragments
and
'#'
in
url
:
url
,
fragment
=
url
.
split
(
'#'
,
1
)
if
'?'
in
url
:
...
...
@@ -197,6 +195,10 @@ def urlsplit(url, scheme='', allow_fragments=True):
if
url
[:
2
]
==
'//'
:
netloc
,
url
=
_splitnetloc
(
url
,
2
)
if
'['
in
netloc
:
if
not
']'
in
netloc
:
raise
ValueError
(
"Invalid IPv6 URL"
)
if
']'
in
netloc
:
if
not
'['
in
netloc
:
raise
ValueError
(
"Invalid IPv6 URL"
)
if
allow_fragments
and
scheme
in
uses_fragment
and
'#'
in
url
:
url
,
fragment
=
url
.
split
(
'#'
,
1
)
if
scheme
in
uses_query
and
'?'
in
url
:
...
...
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