SF 563203. Replaced 'has_key()' with 'in'.

This commit is contained in:
Raymond Hettinger 2002-06-01 14:18:47 +00:00
parent 9d5e4aa414
commit 54f0222547
54 changed files with 243 additions and 222 deletions

View file

@ -568,9 +568,9 @@ def _parse(source, state):
continue
else:
# flags
if not FLAGS.has_key(source.next):
if not source.next in FLAGS:
raise error, "unexpected end of pattern"
while FLAGS.has_key(source.next):
while source.next in FLAGS:
state.flags = state.flags | FLAGS[source.get()]
if group:
# parse group contents