Why does python 2.5.2 have the following behavior
>>>[2].extend([]) == [2]
False
>>> [2].extend([]) == None
True
$ python --version
Python 2.5.2
I assume I'm not understanding something here, but intuitively I'd think that [2].extend([]) should yield [2]