diff options
author | Fred Drake <fdrake@acm.org> | 2000-12-12 23:20:45 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-12-12 23:20:45 +0000 |
commit | 78fa083216b120f65dbdbeef3377a047f1767fce (patch) | |
tree | b052a231089044de42ba463eff511c4c91f8e220 /Lib/dircache.py | |
parent | c453b1a3b80e329f815de2f728bf712d5c7fd295 (diff) | |
download | cpython-78fa083216b120f65dbdbeef3377a047f1767fce.tar.gz |
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/dircache.py')
-rw-r--r-- | Lib/dircache.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/dircache.py b/Lib/dircache.py index a35e16d1bc..08b127a1af 100644 --- a/Lib/dircache.py +++ b/Lib/dircache.py @@ -19,7 +19,7 @@ def listdir(path): mtime = os.stat(path)[8] except os.error: return [] - if mtime <> cached_mtime: + if mtime != cached_mtime: try: list = os.listdir(path) except os.error: |