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
c6bb6c0f
Kaydet (Commit)
c6bb6c0f
authored
Eyl 20, 2003
tarafından
Martin v. Löwis
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Patch #707167: Pass dircache exceptions to the caller. Fixes #682813.
Not backported because of behaviour change.
üst
a64988c0
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
10 deletions
+8
-10
whatsnew24.tex
Doc/whatsnew/whatsnew24.tex
+2
-1
dircache.py
Lib/dircache.py
+2
-8
test_dircache.py
Lib/test/test_dircache.py
+1
-1
NEWS
Misc/NEWS
+3
-0
No files found.
Doc/whatsnew/whatsnew24.tex
Dosyayı görüntüle @
c6bb6c0f
...
...
@@ -124,7 +124,8 @@ changes to your code:
\begin{itemize}
\item
Everything is all in the details!
\item
dircache.listdir now passes exceptions to the caller,
instead of returning empty lists.
\end{itemize}
...
...
Lib/dircache.py
Dosyayı görüntüle @
c6bb6c0f
...
...
@@ -22,15 +22,9 @@ def listdir(path):
del
cache
[
path
]
except
KeyError
:
cached_mtime
,
list
=
-
1
,
[]
try
:
mtime
=
os
.
stat
(
path
)
.
st_mtime
except
os
.
error
:
return
[]
mtime
=
os
.
stat
(
path
)
.
st_mtime
if
mtime
!=
cached_mtime
:
try
:
list
=
os
.
listdir
(
path
)
except
os
.
error
:
return
[]
list
=
os
.
listdir
(
path
)
list
.
sort
()
cache
[
path
]
=
mtime
,
list
return
list
...
...
Lib/test/test_dircache.py
Dosyayı görüntüle @
c6bb6c0f
...
...
@@ -56,7 +56,7 @@ class DircacheTests(unittest.TestCase):
self
.
assert_
(
dircache
.
listdir
(
self
.
tempdir
)
is
entries
)
## UNSUCCESSFUL CASES
self
.
assert
Equals
(
dircache
.
listdir
(
self
.
tempdir
+
"_nonexistent"
),
[]
)
self
.
assert
Raises
(
OSError
,
dircache
.
listdir
,
self
.
tempdir
+
"_nonexistent"
)
def
test_annotate
(
self
):
self
.
writeTemp
(
"test2"
)
...
...
Misc/NEWS
Dosyayı görüntüle @
c6bb6c0f
...
...
@@ -40,6 +40,9 @@ Extension modules
Library
-------
-
dircache
now
passes
exceptions
to
the
caller
,
instead
of
returning
empty
lists
.
-
The
bsddb
module
and
dbhash
module
now
support
the
iterator
and
mapping
protocols
which
make
them
more
substitutable
for
dictionaries
and
shelves
.
...
...
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