Skip to content

Commit 0409ac8

Browse files
committed
Replace path with python/Lib
1 parent 108b40c commit 0409ac8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Doc/library/os.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3669,7 +3669,7 @@ features:
36693669

36703670
import os
36713671
from os.path import join, getsize
3672-
for root, dirs, files in os.walk(os.getcwd()):
3672+
for root, dirs, files in os.walk("python/Lib"):
36733673
print(root, "consumes", end=" ")
36743674
print(sum(getsize(join(root, name)) for name in files), end=" ")
36753675
print("bytes in", len(files), "non-directory files")

0 commit comments

Comments
 (0)