diff options
author | Raymond Hettinger <python@rcn.com> | 2004-05-04 09:21:43 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-05-04 09:21:43 (GMT) |
commit | bac788a3cd348203a5fdabba52e5faf65bf35c5e (patch) | |
tree | 3c5bfe8295936ad51df617ef0fd053ebac684357 /Lib/_strptime.py | |
parent | c5e378da41641d5bc1e9b5c6c11bd470ff90b3e3 (diff) | |
download | cpython-bac788a3cd348203a5fdabba52e5faf65bf35c5e.zip cpython-bac788a3cd348203a5fdabba52e5faf65bf35c5e.tar.gz cpython-bac788a3cd348203a5fdabba52e5faf65bf35c5e.tar.bz2 |
Replace str.find()!=1 with the more readable "in" operator.
Diffstat (limited to 'Lib/_strptime.py')
-rw-r--r-- | Lib/_strptime.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/_strptime.py b/Lib/_strptime.py index 361f52e..22455ae 100644 --- a/Lib/_strptime.py +++ b/Lib/_strptime.py @@ -250,7 +250,7 @@ class TimeRE(dict): format = regex_chars.sub(r"\\\1", format) whitespace_replacement = re_compile('\s+') format = whitespace_replacement.sub('\s*', format) - while format.find('%') != -1: + while '%' in format: directive_index = format.index('%')+1 processed_format = "%s%s%s" % (processed_format, format[:directive_index-1], |