From: Victor Stinner Date: Mon, 30 Mar 2015 09:54:05 +0000 (+0200) Subject: Issue #23605: Fix typo in an os.walk() comment X-Git-Tag: v3.5.0a4~259 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5fdde71cce866ae52f5abd7ee825f0e2fd6fd2f8;p=thirdparty%2FPython%2Fcpython.git Issue #23605: Fix typo in an os.walk() comment Thanks Ben Hoyt for the report. --- diff --git a/Lib/os.py b/Lib/os.py index e5934dad1deb..90beab9b74cb 100644 --- a/Lib/os.py +++ b/Lib/os.py @@ -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