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
bbfe4fad
Kaydet (Commit)
bbfe4fad
authored
Nis 11, 2006
tarafından
Georg Brandl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Bug #1467952: os.listdir() now correctly raises an error if readdir()
fails with an error condition.
üst
ce27a06d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
0 deletions
+9
-0
NEWS
Misc/NEWS
+3
-0
posixmodule.c
Modules/posixmodule.c
+6
-0
No files found.
Misc/NEWS
Dosyayı görüntüle @
bbfe4fad
...
@@ -41,6 +41,9 @@ Core and builtins
...
@@ -41,6 +41,9 @@ Core and builtins
Extension
Modules
Extension
Modules
-----------------
-----------------
-
Bug
#
1467952
:
os
.
listdir
()
now
correctly
raises
an
error
if
readdir
()
fails
with
an
error
condition
.
-
Fix
bsddb
.
db
.
DBError
derived
exceptions
so
they
can
be
unpickled
.
-
Fix
bsddb
.
db
.
DBError
derived
exceptions
so
they
can
be
unpickled
.
Library
Library
...
...
Modules/posixmodule.c
Dosyayı görüntüle @
bbfe4fad
...
@@ -1901,6 +1901,12 @@ posix_listdir(PyObject *self, PyObject *args)
...
@@ -1901,6 +1901,12 @@ posix_listdir(PyObject *self, PyObject *args)
}
}
Py_DECREF
(
v
);
Py_DECREF
(
v
);
}
}
if
(
errno
!=
0
&&
d
!=
NULL
)
{
/* readdir() returned NULL and set errno */
closedir
(
dirp
);
Py_DECREF
(
d
);
return
posix_error_with_allocated_filename
(
name
);
}
closedir
(
dirp
);
closedir
(
dirp
);
PyMem_Free
(
name
);
PyMem_Free
(
name
);
...
...
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