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
8c6d9d7c
Commit
8c6d9d7c
authored
14 years ago
by
Senthil Kumaran
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix issue2987: RFC2732 support for urlparse (IPv6 addresses)
parent
b7b7c77e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
57 additions
and
12 deletions
+57
-12
Lib/test/test_urlparse.py
Lib/test/test_urlparse.py
+34
-0
Lib/urlparse.py
Lib/urlparse.py
+20
-12
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_urlparse.py
View file @
8c6d9d7c
...
...
@@ -238,10 +238,44 @@ class UrlParseTestCase(unittest.TestCase):
#self.checkJoin(RFC2396_BASE, '?y', 'http://a/b/c/?y')
#self.checkJoin(RFC2396_BASE, ';x', 'http://a/b/c/;x')
def
test_RFC3986
(
self
):
self
.
checkJoin
(
RFC3986_BASE
,
'?y'
,
'http://a/b/c/d;p?y'
)
self
.
checkJoin
(
RFC2396_BASE
,
';x'
,
'http://a/b/c/;x'
)
def
test_RFC2732
(
self
):
for
url
,
hostname
,
port
in
[
(
'http://Test.python.org:5432/foo/'
,
'test.python.org'
,
5432
),
(
'http://12.34.56.78:5432/foo/'
,
'12.34.56.78'
,
5432
),
(
'http://[::1]:5432/foo/'
,
'::1'
,
5432
),
(
'http://[dead:beef::1]:5432/foo/'
,
'dead:beef::1'
,
5432
),
(
'http://[dead:beef::]:5432/foo/'
,
'dead:beef::'
,
5432
),
(
'http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]:5432/foo/'
,
'dead:beef:cafe:5417:affe:8fa3:deaf:feed'
,
5432
),
(
'http://[::12.34.56.78]:5432/foo/'
,
'::12.34.56.78'
,
5432
),
(
'http://[::ffff:12.34.56.78]:5432/foo/'
,
'::ffff:12.34.56.78'
,
5432
),
(
'http://Test.python.org/foo/'
,
'test.python.org'
,
None
),
(
'http://12.34.56.78/foo/'
,
'12.34.56.78'
,
None
),
(
'http://[::1]/foo/'
,
'::1'
,
None
),
(
'http://[dead:beef::1]/foo/'
,
'dead:beef::1'
,
None
),
(
'http://[dead:beef::]/foo/'
,
'dead:beef::'
,
None
),
(
'http://[dead:beef:cafe:5417:affe:8FA3:deaf:feed]/foo/'
,
'dead:beef:cafe:5417:affe:8fa3:deaf:feed'
,
None
),
(
'http://[::12.34.56.78]/foo/'
,
'::12.34.56.78'
,
None
),
(
'http://[::ffff:12.34.56.78]/foo/'
,
'::ffff:12.34.56.78'
,
None
),
]:
urlparsed
=
urlparse
.
urlparse
(
url
)
self
.
assertEqual
((
urlparsed
.
hostname
,
urlparsed
.
port
)
,
(
hostname
,
port
))
for
invalid_url
in
[
'http://::12.34.56.78]/'
,
'http://[::1/foo/'
,
'http://[::ffff:12.34.56.78'
]:
self
.
assertRaises
(
ValueError
,
lambda
:
urlparse
.
urlparse
(
invalid_url
).
hostname
)
self
.
assertRaises
(
ValueError
,
lambda
:
urlparse
.
urlparse
(
invalid_url
))
def
test_urldefrag
(
self
):
for
url
,
defrag
,
frag
in
[
(
'http://python.org#frag'
,
'http://python.org'
,
'frag'
),
...
...
This diff is collapsed.
Click to expand it.
Lib/urlparse.py
View file @
8c6d9d7c
...
...
@@ -64,22 +64,26 @@ class ResultMixin(object):
@
property
def
hostname
(
self
):
netloc
=
self
.
netloc
if
"@"
in
netloc
:
netloc
=
netloc
.
rsplit
(
"@"
,
1
)[
1
]
if
":"
in
netloc
:
netloc
=
netloc
.
split
(
":"
,
1
)[
0
]
return
netloc
.
lower
()
or
None
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
==
''
:
return
None
else
:
return
netloc
.
lower
()
@
property
def
port
(
self
):
netloc
=
self
.
netloc
if
"@"
in
netloc
:
netloc
=
netloc
.
rsplit
(
"@"
,
1
)[
1
]
if
":"
in
netloc
:
port
=
netloc
.
split
(
":"
,
1
)[
1
]
netloc
=
self
.
netloc
.
split
(
'@'
)[
-
1
].
split
(
']'
)[
-
1
]
if
':'
in
netloc
:
port
=
netloc
.
split
(
':'
)[
1
]
return
int
(
port
,
10
)
return
None
else
:
return
None
from
collections
import
namedtuple
...
...
@@ -124,6 +128,10 @@ 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
...
...
This diff is collapsed.
Click to expand it.
Misc/NEWS
View file @
8c6d9d7c
...
...
@@ -15,6 +15,9 @@ Core and Builtins
Library
-------
- Issue #2987: RFC2732 support for urlparse (IPv6 addresses). Patch by Tony
Locke and Hans Ulrich Niedermann.
- Issue #7585: difflib context and unified diffs now place a tab between
filename and date, conforming to the 'standards' they were originally
designed to follow. This improves compatibility with patch tools.
...
...
This diff is collapsed.
Click to expand it.
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