From a9b2b4be26df7c3da8a20d1a5f4d2b796e455b4b Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 29 Feb 2000 13:31:16 +0000 Subject: Remove some redundant logic from walk() -- there's no need to check for "." and "..", since listdir() no longer returns those. --- Lib/posixpath.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/Lib/posixpath.py b/Lib/posixpath.py index cc0e4cb..a603e9e 100644 --- a/Lib/posixpath.py +++ b/Lib/posixpath.py @@ -263,9 +263,7 @@ of all the files and subdirs in directory "d". except os.error: return func(arg, top, names) - exceptions = ('.', '..') for name in names: - if name not in exceptions: name = join(top, name) st = os.lstat(name) if stat.S_ISDIR(st[stat.ST_MODE]): -- cgit v0.12