Attempt to simplify the "if ... is None" statement
An attempt to make source code easier to read by replacing:
if foo is None:
foo = func(val)
By:
foo = foo or func(val)
Edited by Nsukami Patrick
An attempt to make source code easier to read by replacing:
if foo is None:
foo = func(val)
By:
foo = foo or func(val)