I am quite new to python and am trying to understand this code (from https://github.com/yoctoproject/poky/blob/master/meta/classes/insane.bbclass#L803 ):
a = b[:]
Why not rather use this simple form for copying a list?
a = b
I am quite new to python and am trying to understand this code (from https://github.com/yoctoproject/poky/blob/master/meta/classes/insane.bbclass#L803 ):
a = b[:]
Why not rather use this simple form for copying a list?
a = b