<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Sat, Apr 21, 2018 at 6:13 PM, Steven D'Aprano <span dir="ltr"><<a href="mailto:steve@pearwood.info" target="_blank">steve@pearwood.info</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On Sat, Apr 21, 2018 at 08:35:51PM +0100, Matthew Woodcraft wrote:<br>
<br>
> Well, that's a reason to make the example a bit more realistic, then.<br>
> <br>
> Say:<br>
> <br>
> if match := re.search(pat1, text):<br>
>     do_something_with(match.group(<wbr>0))<br>
> elif match := re.search(pat2, text):<br>
>     do_something_else_with(match.<wbr>group(0), match.group(1))<br>
> elif match := re.search(pat3, text):<br>
>     do_some_other_things_with(<wbr>match.group(0))<br>
>     and_also_with(match.group(1), match.group(2))<br>
<br>
</span>I don't think that a bunch of generic "do_something_with" functions is <br>
precisely "realistic".<br>
<br>
If I saw something like that, I'd try very hard to find a way to <br>
refactor it into code like this:<br>
<br>
for handler in handlers:<br>
    if handler.match(text):<br>
        handler.process()<br>
        break<br>
else:<br>
    # handle no-match case here<br>
<br>
where the knowledge of what to search for, where to search for it, how <br>
to search for it, and what to do when found, was encapsulated in the <br>
handler objects. Your tastes may vary.<br>
<br>
But your point is well-taken that the version with binding assignment <br>
(thanks Tim!) is nicer to read than the current procedural version:<br>
<br>
match = re.search(pat1, text)<br>
if match:<br>
    do_something_with(match.group(<wbr>0))<br>
else:<br>
    match = re.search(pat2, text)<br>
    if match:<br>
        do_something_else_with(match.<wbr>group(0), match.group(1))<br>
    else:<br>
        match = = re.search(pat3, text)<br>
        do_some_other_things_with(<wbr>match.group(0))<br>
        and_also_with(match.group(1), match.group(2))<br>
<br>
I just don't think it counts as a motivating use-case distinct from the <br>
single match case.<span class="HOEnZb"></span><br></blockquote></div><br></div><div class="gmail_extra">The version of this code found in reality is not as regular as the example quoted, and the rebuttal "but I would rewrite it with a loop" shoots a straw man. To me the if-elif-elif portion of the example is very much a separate motivation, since being able to put the assignment in the elif clause avoids runaway indentation. I've regretted not being able to use elif in this kind of situation many times, whereas in the single match case I don't find it a burden to assign the variable in a separate statement preceding the if-clause. (I guess this is a case of "flat is better than nested" -- thanks Tim! :-)<br clear="all"></div><div class="gmail_extra"><br>-- <br><div class="gmail_signature" data-smartmail="gmail_signature">--Guido van Rossum (<a href="http://python.org/~guido" target="_blank">python.org/~guido</a>)</div>
</div></div>