summaryrefslogtreecommitdiff
path: root/Lib/keyword.py
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2004-05-04 09:21:43 +0000
committerRaymond Hettinger <python@rcn.com>2004-05-04 09:21:43 +0000
commitbac788a3cd348203a5fdabba52e5faf65bf35c5e (patch)
tree3c5bfe8295936ad51df617ef0fd053ebac684357 /Lib/keyword.py
parentc5e378da41641d5bc1e9b5c6c11bd470ff90b3e3 (diff)
downloadcpython-git-bac788a3cd348203a5fdabba52e5faf65bf35c5e.tar.gz
Replace str.find()!=1 with the more readable "in" operator.
Diffstat (limited to 'Lib/keyword.py')
-rwxr-xr-xLib/keyword.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/keyword.py b/Lib/keyword.py
index a0295e2139..223a88a9de 100755
--- a/Lib/keyword.py
+++ b/Lib/keyword.py
@@ -63,7 +63,7 @@ def main():
while 1:
line = fp.readline()
if not line: break
- if line.find('{1, "') > -1:
+ if '{1, "' in line:
match = strprog.search(line)
if match:
lines.append(" '" + match.group(1) + "',\n")