At several occasions I stumbled upon C-style assignment in Python such as a = b = 0
. By diligent Googling I found out that this is called chained assignment: [1],[2],[3]. However, it appears that this feature is not mentioned in the official documentation.
Does this mean that chained assignment is still in experimental phase, or simply that the official documentation is slightly behind the development?