inspired by this post, I am assuming that PEP8 is discouraging chained method (method cascading).
built-ins are the proof.
>>> x = list()
>>> x.append(1).append(2)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: 'NoneType' object has no attribute 'append'
but i didn't find related doc by search on pep
any idea?