summaryrefslogtreecommitdiff
path: root/Lib/linecache.py
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-12-12 23:20:45 +0000
committerFred Drake <fdrake@acm.org>2000-12-12 23:20:45 +0000
commit78fa083216b120f65dbdbeef3377a047f1767fce (patch)
treeb052a231089044de42ba463eff511c4c91f8e220 /Lib/linecache.py
parentc453b1a3b80e329f815de2f728bf712d5c7fd295 (diff)
downloadcpython-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/linecache.py')
-rw-r--r--Lib/linecache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/linecache.py b/Lib/linecache.py
index bca40b291c..c39f8db595 100644
--- a/Lib/linecache.py
+++ b/Lib/linecache.py
@@ -50,7 +50,7 @@ def checkcache():
except os.error:
del cache[filename]
continue
- if size <> stat[ST_SIZE] or mtime <> stat[ST_MTIME]:
+ if size != stat[ST_SIZE] or mtime != stat[ST_MTIME]:
del cache[filename]