summaryrefslogtreecommitdiffstats
path: root/Lib/statcache.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-12-12 23:20:45 (GMT)
committerFred Drake <fdrake@acm.org>2000-12-12 23:20:45 (GMT)
commit8152d32375c40bba9ccbe43b780ebe96d9617781 (patch)
treef10aba5ba6f1e3064b26d2edfd6fffb45378245d /Lib/statcache.py
parentc140131995c67b1cd001b5c27e0095c53b1204b4 (diff)
downloadcpython-8152d32375c40bba9ccbe43b780ebe96d9617781.zip
cpython-8152d32375c40bba9ccbe43b780ebe96d9617781.tar.gz
cpython-8152d32375c40bba9ccbe43b780ebe96d9617781.tar.bz2
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.
Diffstat (limited to 'Lib/statcache.py')
-rw-r--r--Lib/statcache.py6
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]