diff options
Diffstat (limited to 'Lib/statcache.py')
-rw-r--r-- | Lib/statcache.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/statcache.py b/Lib/statcache.py index b5147c2..26f90942 100644 --- a/Lib/statcache.py +++ b/Lib/statcache.py @@ -43,10 +43,10 @@ def forget_prefix(prefix): def forget_dir(prefix): """Forget about a directory and all entries in it, but not about entries in subdirectories.""" - if prefix[-1:] == '/' and prefix <> '/': + if prefix[-1:] == '/' and prefix != '/': prefix = prefix[:-1] forget(prefix) - if prefix[-1:] <> '/': + if prefix[-1:] != '/': prefix = prefix + '/' n = len(prefix) for path in cache.keys(): @@ -62,7 +62,7 @@ def forget_except_prefix(prefix): Normally used with prefix = '/' after a chdir().""" n = len(prefix) for path in cache.keys(): - if path[:n] <> prefix: + if path[:n] != prefix: del cache[path] |