Georg Brandl <[EMAIL PROTECTED]> wrote:
> or something like
> 
> m = re.match(...)
> if m.group(1) as filename:
>     do something with filename

Except that m could be None, which would raise an exception during the
.group(1) call.  Perhaps you meant...

m = re.match(...)
if m and m.group(1) as filename:
    do something with filename


I'm -1 on the 'as'-itis.
 - Josiah

_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to