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
eaaec27b
Kaydet (Commit)
eaaec27b
authored
Mar 30, 2009
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix for Issue4962, issue4675.
üst
7f6b4f86
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
21 additions
and
2 deletions
+21
-2
test_urllib.py
Lib/test/test_urllib.py
+16
-0
test_urlparse.py
Lib/test/test_urlparse.py
+3
-0
parse.py
Lib/urllib/parse.py
+2
-2
No files found.
Lib/test/test_urllib.py
Dosyayı görüntüle @
eaaec27b
...
...
@@ -830,6 +830,21 @@ class Pathname_Tests(unittest.TestCase):
"url2pathname() failed;
%
s !=
%
s"
%
(
expect
,
result
))
class
Utility_Tests
(
unittest
.
TestCase
):
"""Testcase to test the various utility functions in the urllib."""
def
test_splitpasswd
(
self
):
"""Some of password examples are not sensible, but it is added to
confirming to RFC2617 and addressing issue4675.
"""
self
.
assertEqual
((
'user'
,
'ab'
),
urllib
.
parse
.
splitpasswd
(
'user:ab'
))
self
.
assertEqual
((
'user'
,
'a
\n
b'
),
urllib
.
parse
.
splitpasswd
(
'user:a
\n
b'
))
self
.
assertEqual
((
'user'
,
'a
\t
b'
),
urllib
.
parse
.
splitpasswd
(
'user:a
\t
b'
))
self
.
assertEqual
((
'user'
,
'a
\r
b'
),
urllib
.
parse
.
splitpasswd
(
'user:a
\r
b'
))
self
.
assertEqual
((
'user'
,
'a
\f
b'
),
urllib
.
parse
.
splitpasswd
(
'user:a
\f
b'
))
self
.
assertEqual
((
'user'
,
'a
\v
b'
),
urllib
.
parse
.
splitpasswd
(
'user:a
\v
b'
))
self
.
assertEqual
((
'user'
,
'a:b'
),
urllib
.
parse
.
splitpasswd
(
'user:a:b'
))
# Just commented them out.
# Can't really tell why keep failing in windows and sparc.
# Everywhere else they work ok, but on those machines, someteimes
...
...
@@ -920,6 +935,7 @@ def test_main():
UnquotingTests
,
urlencode_Tests
,
Pathname_Tests
,
Utility_Tests
,
#FTPWrapperTests,
)
...
...
Lib/test/test_urlparse.py
Dosyayı görüntüle @
eaaec27b
...
...
@@ -97,6 +97,9 @@ class UrlParseTestCase(unittest.TestCase):
''
,
''
,
''
),
(
'mms'
,
'wms.sys.hinet.net'
,
'/cts/Drama/09006251100.asf'
,
''
,
''
)),
(
'nfs://server/path/to/file.txt'
,
(
'nfs'
,
'server'
,
'/path/to/file.txt'
,
''
,
''
,
''
),
(
'nfs'
,
'server'
,
'/path/to/file.txt'
,
''
,
''
)),
(
'svn+ssh://svn.zope.org/repos/main/ZConfig/trunk/'
,
(
'svn+ssh'
,
'svn.zope.org'
,
'/repos/main/ZConfig/trunk/'
,
''
,
''
,
''
),
...
...
Lib/urllib/parse.py
Dosyayı görüntüle @
eaaec27b
...
...
@@ -19,7 +19,7 @@ uses_relative = ['ftp', 'http', 'gopher', 'nntp', 'imap',
uses_netloc
=
[
'ftp'
,
'http'
,
'gopher'
,
'nntp'
,
'telnet'
,
'imap'
,
'wais'
,
'file'
,
'mms'
,
'https'
,
'shttp'
,
'snews'
,
'prospero'
,
'rtsp'
,
'rtspu'
,
'rsync'
,
''
,
'svn'
,
'svn+ssh'
,
'sftp'
]
'svn'
,
'svn+ssh'
,
'sftp'
,
'nfs'
]
non_hierarchical
=
[
'gopher'
,
'hdl'
,
'mailto'
,
'news'
,
'telnet'
,
'wais'
,
'imap'
,
'snews'
,
'sip'
,
'sips'
]
uses_params
=
[
'ftp'
,
'hdl'
,
'prospero'
,
'http'
,
'imap'
,
...
...
@@ -645,7 +645,7 @@ def splitpasswd(user):
global
_passwdprog
if
_passwdprog
is
None
:
import
re
_passwdprog
=
re
.
compile
(
'^([^:]*):(.*)$'
)
_passwdprog
=
re
.
compile
(
'^([^:]*):(.*)$'
,
re
.
S
)
match
=
_passwdprog
.
match
(
user
)
if
match
:
return
match
.
group
(
1
,
2
)
...
...
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