Pyhton Devuelve el objeto anónimo

>>> obj = type('',(object,),{"foo": 1})()
>>> obj.foo
1
DreamCoder