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
b5d4d2a7
Kaydet (Commit)
b5d4d2a7
authored
Haz 06, 2001
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #409973: Speedup glob.glob, add fnmatch.filter.
üst
3d10b34b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
7 deletions
+26
-7
fnmatch.py
Lib/fnmatch.py
+20
-0
glob.py
Lib/glob.py
+6
-7
No files found.
Lib/fnmatch.py
Dosyayı görüntüle @
b5d4d2a7
...
...
@@ -37,6 +37,26 @@ def fnmatch(name, pat):
pat
=
os
.
path
.
normcase
(
pat
)
return
fnmatchcase
(
name
,
pat
)
def
filter
(
names
,
pat
):
"""Return the subset of the list NAMES that match PAT"""
import
os
,
posixpath
result
=
[]
pat
=
os
.
path
.
normcase
(
pat
)
if
not
_cache
.
has_key
(
pat
):
res
=
translate
(
pat
)
_cache
[
pat
]
=
re
.
compile
(
res
)
match
=
_cache
[
pat
]
.
match
if
os
.
path
is
posixpath
:
# normcase on posix is NOP. Optimize it away from the loop.
for
name
in
names
:
if
match
(
name
):
result
.
append
(
name
)
else
:
for
name
in
names
:
if
match
(
os
.
path
.
normcase
(
name
)):
result
.
append
(
name
)
return
result
def
fnmatchcase
(
name
,
pat
):
"""Test whether FILENAME matches PATTERN, including case.
...
...
Lib/glob.py
Dosyayı görüntüle @
b5d4d2a7
...
...
@@ -18,7 +18,9 @@ def glob(pathname):
else
:
return
[]
dirname
,
basename
=
os
.
path
.
split
(
pathname
)
if
has_magic
(
dirname
):
if
not
dirname
:
return
glob1
(
os
.
curdir
,
basename
)
elif
has_magic
(
dirname
):
list
=
glob
(
dirname
)
else
:
list
=
[
dirname
]
...
...
@@ -43,12 +45,9 @@ def glob1(dirname, pattern):
names
=
os
.
listdir
(
dirname
)
except
os
.
error
:
return
[]
result
=
[]
for
name
in
names
:
if
name
[
0
]
!=
'.'
or
pattern
[
0
]
==
'.'
:
if
fnmatch
.
fnmatch
(
name
,
pattern
):
result
.
append
(
name
)
return
result
if
pattern
[
0
]
!=
'.'
:
names
=
filter
(
lambda
x
:
x
[
0
]
!=
'.'
,
names
)
return
fnmatch
.
filter
(
names
,
pattern
)
magic_check
=
re
.
compile
(
'[*?[]'
)
...
...
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