In a python script I saw something like the following:
someobject.name = name = otherobject.getname()
Since I don't know how this is called, it's difficult to google it, although I think it is trivial if you know the name for that expression.
Can someone tell me what this does? My idea is that first
name = otherobject.getname()
is called, and then
someobject.name = name
But I am not sure if it works that way, and if the order of execution is like that.