Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
os.fwalk()
1 parent c9cf019 commit 849a80eCopy full SHA for 849a80e
1 file changed
Doc/library/os.rst
@@ -3757,9 +3757,9 @@ features:
3757
3758
import os
3759
for root, dirs, files, rootfd in os.fwalk('python/Lib/xml'):
3760
- print(root, "consumes", end="")
+ print(root, "consumes", end=" ")
3761
print(sum([os.stat(name, dir_fd=rootfd).st_size for name in files]),
3762
- end="")
+ end=" ")
3763
print("bytes in", len(files), "non-directory files")
3764
if '__pycache__' in dirs:
3765
dirs.remove('__pycache__') # don't visit __pycache__ directories
0 commit comments