[Python-checkins] cpython: Issue #23605: Fix typo in an os.walk() comment

victor.stinner python-checkins at python.org
Mon Mar 30 11:54:11 CEST 2015


https://hg.python.org/cpython/rev/1ad3d8d82b18
changeset:   95296:1ad3d8d82b18
parent:      95294:7f1015e4277a
user:        Victor Stinner <victor.stinner at gmail.com>
date:        Mon Mar 30 11:54:05 2015 +0200
summary:
  Issue #23605: Fix typo in an os.walk() comment

Thanks Ben Hoyt for the report.

files:
  Lib/os.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/os.py b/Lib/os.py
--- a/Lib/os.py
+++ b/Lib/os.py
@@ -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

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list