Add None coalescing operator in Python

This is often spelled:

 new_variable = a_variable or 'Hello Python'

in Python. It doesn’t work if, say, '' is a valid value but is
otherwise effective. So we’ve got maybe 90% (wild guess) of the use
cases covered with just that.

Cheers,
Cameron Simpson cs@cskk.id.au