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
1d3dd745
Kaydet (Commit)
1d3dd745
authored
Tem 17, 2000
tarafından
Skip Montanaro
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
* split on / or \
* case insensitive comparison
üst
802bc5d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
ntpath.py
Lib/ntpath.py
+5
-3
No files found.
Lib/ntpath.py
Dosyayı görüntüle @
1d3dd745
...
...
@@ -8,6 +8,7 @@ module as os.path.
import
os
import
stat
import
string
import
re
# Normalize the case of a pathname and map slashes to backslashes.
...
...
@@ -158,9 +159,10 @@ def dirname(p):
def
commonprefix
(
m
):
"Given a list of pathnames, returns the longest common leading component"
if
not
m
:
return
''
n
=
m
[:]
n
=
m
ap
(
string
.
lower
,
m
)
for
i
in
range
(
len
(
n
)):
n
[
i
]
=
n
[
i
]
.
split
(
os
.
sep
)
n
[
i
]
=
re
.
split
(
r"[/\\]"
,
n
[
i
])
prefix
=
n
[
0
]
for
item
in
n
:
for
i
in
range
(
len
(
prefix
)):
...
...
@@ -168,7 +170,7 @@ def commonprefix(m):
prefix
=
prefix
[:
i
]
if
i
==
0
:
return
''
break
return
os
.
sep
.
join
(
prefix
)
return
"
\\
"
.
join
(
prefix
)
# Get size, mtime, atime of files.
...
...
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