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
f70ce68c
Kaydet (Commit)
f70ce68c
authored
Agu 16, 2009
tarafından
Senthil Kumaran
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixing Issue6711 - macurl2path has typos that raise AttributeError
üst
5a92b13a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
macurl2path.py
Lib/macurl2path.py
+3
-3
No files found.
Lib/macurl2path.py
Dosyayı görüntüle @
f70ce68c
...
...
@@ -13,7 +13,7 @@ def url2pathname(pathname):
#
# XXXX The .. handling should be fixed...
#
tp
=
urllib
.
parsesplittype
(
pathname
)[
0
]
tp
=
urllib
.
parse
.
splittype
(
pathname
)[
0
]
if
tp
and
tp
!=
'file'
:
raise
RuntimeError
(
'Cannot convert non-local URL to pathname'
)
# Turn starting /// into /, an empty hostname means current host
...
...
@@ -47,7 +47,7 @@ def url2pathname(pathname):
i
=
i
+
1
rv
=
':'
+
':'
.
join
(
components
)
# and finally unquote slashes and other funny characters
return
urllib
.
parseunquote
(
rv
)
return
urllib
.
parse
.
unquote
(
rv
)
def
pathname2url
(
pathname
):
"""OS-specific conversion from a file system path to a relative URL
...
...
@@ -74,7 +74,7 @@ def pathname2url(pathname):
def
_pncomp2url
(
component
):
# We want to quote slashes
return
urllib
.
parsequote
(
component
[:
31
],
safe
=
''
)
return
urllib
.
parse
.
quote
(
component
[:
31
],
safe
=
''
)
def
test
():
for
url
in
[
"index.html"
,
...
...
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