I don't think it has an official name, it's just a smart / lazy way to be concise. This is roughly equivalent to:
a = b if b else {}
or
if b:
a = b
else:
a = {}
I wrote this as a comment, but I think it's worth mentioning here:
. , - None, is None , . , None - , false . 0, [], {},... false. , , .
:
a = b if b is not None else {}