diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-03-30 09:54:05 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-03-30 09:54:05 (GMT) |
commit | 5fdde71cce866ae52f5abd7ee825f0e2fd6fd2f8 (patch) | |
tree | d5ee6332f4c768c23944c69273d7b64766d5fbe1 /Lib/os.py | |
parent | 81c6df5c0fa046eea1a9fe971fe72ad03b0bf9b3 (diff) | |
download | cpython-5fdde71cce866ae52f5abd7ee825f0e2fd6fd2f8.zip cpython-5fdde71cce866ae52f5abd7ee825f0e2fd6fd2f8.tar.gz cpython-5fdde71cce866ae52f5abd7ee825f0e2fd6fd2f8.tar.bz2 |
Issue #23605: Fix typo in an os.walk() comment
Thanks Ben Hoyt for the report.
Diffstat (limited to 'Lib/os.py')
-rw-r--r-- | Lib/os.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -402,7 +402,7 @@ def walk(top, topdown=True, onerror=None, followlinks=False): is_symlink = entry.is_symlink() except OSError: # If is_symlink() raises an OSError, consider that the - # entry is not a symbolik link, same behaviour than + # entry is not a symbolic link, same behaviour than # os.path.islink(). is_symlink = False walk_into = not is_symlink |