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
62358316
Kaydet (Commit)
62358316
authored
Agu 22, 2000
tarafından
Skip Montanaro
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
revert semantics of commonprefix to work character-by-character
üst
6424524f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
26 deletions
+11
-26
dospath.py
Lib/dospath.py
+5
-11
ntpath.py
Lib/ntpath.py
+3
-8
posixpath.py
Lib/posixpath.py
+3
-7
No files found.
Lib/dospath.py
Dosyayı görüntüle @
62358316
...
...
@@ -3,7 +3,6 @@
import
os
import
stat
import
string
import
re
def
normcase
(
s
):
...
...
@@ -103,23 +102,18 @@ def dirname(p):
return
split
(
p
)[
0
]
# Return the longest prefix of all list elements.
def
commonprefix
(
m
):
"Given a list of pathnames, returns the longest common leading component"
"""Return the longest prefix of all list elements."""
if
not
m
:
return
''
n
=
map
(
string
.
lower
,
m
)
for
i
in
range
(
len
(
n
)):
n
[
i
]
=
re
.
split
(
r"[/\\]"
,
n
[
i
])
prefix
=
n
[
0
]
for
item
in
n
:
prefix
=
m
[
0
]
for
item
in
m
:
for
i
in
range
(
len
(
prefix
)):
if
prefix
[:
i
+
1
]
<>
item
[:
i
+
1
]:
prefix
=
prefix
[:
i
]
if
i
==
0
:
return
''
break
return
"
\\
"
.
join
(
prefix
)
return
prefix
# Get size, mtime, atime of files.
...
...
Lib/ntpath.py
Dosyayı görüntüle @
62358316
...
...
@@ -8,7 +8,6 @@ module as os.path.
import
os
import
stat
import
string
import
re
# Normalize the case of a pathname and map slashes to backslashes.
...
...
@@ -159,18 +158,14 @@ def dirname(p):
def
commonprefix
(
m
):
"Given a list of pathnames, returns the longest common leading component"
if
not
m
:
return
''
n
=
map
(
string
.
lower
,
m
)
for
i
in
range
(
len
(
n
)):
n
[
i
]
=
re
.
split
(
r"[/\\]"
,
n
[
i
])
prefix
=
n
[
0
]
for
item
in
n
:
prefix
=
m
[
0
]
for
item
in
m
:
for
i
in
range
(
len
(
prefix
)):
if
prefix
[:
i
+
1
]
<>
item
[:
i
+
1
]:
prefix
=
prefix
[:
i
]
if
i
==
0
:
return
''
break
return
"
\\
"
.
join
(
prefix
)
return
prefix
# Get size, mtime, atime of files.
...
...
Lib/posixpath.py
Dosyayı görüntüle @
62358316
...
...
@@ -118,18 +118,14 @@ def dirname(p):
def
commonprefix
(
m
):
"Given a list of pathnames, returns the longest common leading component"
if
not
m
:
return
''
n
=
m
[:]
for
i
in
range
(
len
(
n
)):
n
[
i
]
=
n
[
i
]
.
split
(
"/"
)
prefix
=
n
[
0
]
for
item
in
n
:
prefix
=
m
[
0
]
for
item
in
m
:
for
i
in
range
(
len
(
prefix
)):
if
prefix
[:
i
+
1
]
<>
item
[:
i
+
1
]:
prefix
=
prefix
[:
i
]
if
i
==
0
:
return
''
break
return
"/"
.
join
(
prefix
)
return
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