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
50399ae5
Kaydet (Commit)
50399ae5
authored
Mar 31, 1992
tarafından
Guido van Rossum
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
mac -> os (can't this go now dircache is universal?)
üst
d9596e3a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
maccache.py
Mac/Lib/maccache.py
+6
-6
No files found.
Mac/Lib/maccache.py
Dosyayı görüntüle @
50399ae5
# Module 'maccache'
#
# Maintain a cache of listdir(), isdir(), isfile() or exists() outcomes.
# XXX Should merge with module statcache
import
mac
import
macpath
import
os
# The cache.
...
...
@@ -15,7 +15,7 @@ cache = {}
# Current working directory.
#
cwd
=
mac
.
getcwd
()
cwd
=
os
.
getcwd
()
# Constants.
...
...
@@ -25,14 +25,14 @@ FILE = 1
LISTTYPE
=
type
([])
def
_stat
(
name
):
name
=
mac
path
.
join
(
cwd
,
name
)
name
=
os
.
path
.
join
(
cwd
,
name
)
if
cache
.
has_key
(
name
):
return
cache
[
name
]
if
mac
path
.
isfile
(
name
):
if
os
.
path
.
isfile
(
name
):
cache
[
name
]
=
FILE
return
FILE
try
:
list
=
mac
.
listdir
(
name
)
list
=
os
.
listdir
(
name
)
except
:
cache
[
name
]
=
NONE
return
NONE
...
...
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