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
77e1db3b
Kaydet (Commit)
77e1db3b
authored
Haz 02, 1997
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Support $HOME in expanduser().
(Who'd thought that *anyone* would be interested in writing ~/foo on NT :-)
üst
dafce6db
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
6 deletions
+12
-6
ntpath.py
Lib/ntpath.py
+12
-6
No files found.
Lib/ntpath.py
Dosyayı görüntüle @
77e1db3b
...
...
@@ -23,6 +23,7 @@ def normcase(s):
res
=
res
+
c
return
string
.
lower
(
res
)
# Return wheter a path is absolute.
# Trivial in Posix, harder on the Mac or MS-DOS.
# For DOS it is absolute if it starts with a slash or backslash (current
...
...
@@ -34,6 +35,8 @@ def isabs(s):
return
s
!=
''
and
s
[:
1
]
in
'/
\\
'
# Join two (or more) paths.
def
join
(
a
,
*
p
):
path
=
a
for
b
in
p
:
...
...
@@ -244,13 +247,16 @@ def expanduser(path):
while
i
<
n
and
path
[
i
]
not
in
'/
\\
'
:
i
=
i
+
1
if
i
==
1
:
try
:
drive
=
os
.
environ
[
'HOMEDRIVE'
]
except
KeyError
:
drive
=
''
if
not
os
.
environ
.
has_key
(
'HOMEPATH'
):
if
os
.
environ
.
has_key
(
'HOME'
):
userhome
=
os
.
environ
[
'HOME'
]
elif
not
os
.
environ
.
has_key
(
'HOMEPATH'
):
return
path
userhome
=
join
(
drive
,
os
.
environ
[
'HOMEPATH'
])
else
:
try
:
drive
=
os
.
environ
[
'HOMEDRIVE'
]
except
KeyError
:
drive
=
''
userhome
=
join
(
drive
,
os
.
environ
[
'HOMEPATH'
])
else
:
return
path
return
userhome
+
path
[
i
:]
...
...
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