changeset: 95296:1ad3d8d82b18 parent: 95294:7f1015e4277a user: Victor Stinner date: Mon Mar 30 11:54:05 2015 +0200 files: Lib/os.py description: Issue #23605: Fix typo in an os.walk() comment Thanks Ben Hoyt for the report. diff -r 7f1015e4277a -r 1ad3d8d82b18 Lib/os.py --- a/Lib/os.py Mon Mar 30 11:19:07 2015 +0200 +++ b/Lib/os.py Mon Mar 30 11:54:05 2015 +0200 @@ -402,7 +402,7 @@ 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