Hi all,

Currently, list.append(x) mutates the list and returns None.

It would be a little syntactic sugar to return x, for example:

    something = mylist.append(Something())

What do you think ?

Thanks in advance for your replies

--