diff options
author | Guido van Rossum <guido@python.org> | 1999-11-02 13:29:08 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-11-02 13:29:08 (GMT) |
commit | f618a48d117fe98dce05253eded6caeb9a849114 (patch) | |
tree | 21bcc851c8fb5344f9f5e138016fdd5673837cdc /Lib/ntpath.py | |
parent | 5a2ca9328df3f73fcf0b38d488972ef139cc73e1 (diff) | |
download | cpython-f618a48d117fe98dce05253eded6caeb9a849114.zip cpython-f618a48d117fe98dce05253eded6caeb9a849114.tar.gz cpython-f618a48d117fe98dce05253eded6caeb9a849114.tar.bz2 |
Correct typo in walk.__doc__ reported by Francois Pinard.
Diffstat (limited to 'Lib/ntpath.py')
-rw-r--r-- | Lib/ntpath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ntpath.py b/Lib/ntpath.py index 94c349c..75cbe49 100644 --- a/Lib/ntpath.py +++ b/Lib/ntpath.py @@ -255,7 +255,7 @@ def ismount(path): def walk(top, func, arg): """Directory tree walk whth callback function. - walk(top, func, args) calls func(arg, d, files) for each directory d + walk(top, func, arg) calls func(arg, d, files) for each directory d in the tree rooted at top (including top itself); files is a list of all the files and subdirs in directory d.""" try: |