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
7c90a82a
Kaydet (Commit)
7c90a82a
authored
Şub 11, 2016
tarafından
Serhiy Storchaka
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #25995: os.walk() no longer uses FDs proportional to the tree depth.
Different solution from 3.5.
üst
ffe96ae1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
os.py
Lib/os.py
+5
-1
NEWS
Misc/NEWS
+2
-0
No files found.
Lib/os.py
Dosyayı görüntüle @
7c90a82a
...
...
@@ -356,6 +356,7 @@ def walk(top, topdown=True, onerror=None, followlinks=False):
dirs
=
[]
nondirs
=
[]
walk_dirs
=
[]
# We may not have read permission for top, in which case we can't
# get a list of the files the directory contains. os.walk
...
...
@@ -414,7 +415,7 @@ def walk(top, topdown=True, onerror=None, followlinks=False):
walk_into
=
not
is_symlink
if
walk_into
:
yield
from
walk
(
entry
.
path
,
topdown
,
onerror
,
followlinks
)
walk_dirs
.
append
(
entry
.
path
)
# Yield before recursion if going top down
if
topdown
:
...
...
@@ -431,6 +432,9 @@ def walk(top, topdown=True, onerror=None, followlinks=False):
if
followlinks
or
not
islink
(
new_path
):
yield
from
walk
(
new_path
,
topdown
,
onerror
,
followlinks
)
else
:
# Recurse into sub-directories
for
new_path
in
walk_dirs
:
yield
from
walk
(
new_path
,
topdown
,
onerror
,
followlinks
)
# Yield after recursion if going bottom up
yield
top
,
dirs
,
nondirs
...
...
Misc/NEWS
Dosyayı görüntüle @
7c90a82a
...
...
@@ -179,6 +179,8 @@ Core and Builtins
Library
-------
- Issue #25995: os.walk() no longer uses FDs proportional to the tree depth.
- Issue #25994: Added the close() method and the support of the context manager
protocol for the os.scandir() iterator.
...
...
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