diff options
author | Fred Drake <fdrake@acm.org> | 2000-12-12 23:20:45 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-12-12 23:20:45 (GMT) |
commit | 8152d32375c40bba9ccbe43b780ebe96d9617781 (patch) | |
tree | f10aba5ba6f1e3064b26d2edfd6fffb45378245d /Lib/mailcap.py | |
parent | c140131995c67b1cd001b5c27e0095c53b1204b4 (diff) | |
download | cpython-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/mailcap.py')
-rw-r--r-- | Lib/mailcap.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/mailcap.py b/Lib/mailcap.py index 636f2dd..9756594 100644 --- a/Lib/mailcap.py +++ b/Lib/mailcap.py @@ -173,7 +173,7 @@ def subst(field, MIMEtype, filename, plist=[]): i, n = 0, len(field) while i < n: c = field[i]; i = i+1 - if c <> '%': + if c != '%': if c == '\\': c = field[i:i+1]; i = i+1 res = res + c @@ -187,7 +187,7 @@ def subst(field, MIMEtype, filename, plist=[]): res = res + MIMEtype elif c == '{': start = i - while i < n and field[i] <> '}': + while i < n and field[i] != '}': i = i+1 name = field[start:i] i = i+1 |