Update the code to better reflect recommended style:
Use != instead of <> since <> is documented as "obsolescent".
Use "is" and "is not" when comparing with None or type objects.
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_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 @@
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]