
Sept. 9, 2016
8:06 p.m.
On Sat, Sep 10, 2016 at 6:01 AM, Arek Bulski <arek.bulski@gmail.com> wrote:
Sometimes I find myself in need of this nice operator that I used back in the days when I was programming in .NET, essentially an expression
expr ?? instead
should return expr when it `is not None` and `instead` otherwise.
You can use 'or' for this, as long as you're okay with other falsey values being treated the same way. In a lot of cases, this isn't a problem. However, even if this is implemented, it would be in an expression context, so 'raise' would never work. For that, I'd just use the explicit statement form. ChrisA