This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author laki
Recipients laki
Date 2012-08-10.08:20:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1344586817.32.0.627259473007.issue15614@psf.upfronthosting.co.za>
In-reply-to
Content
Python 2.7.3 (default, Apr 10 2012, 23:24:47) [MSC v.1500 64 bit (AMD64)] on win32
>>> a = [1,2]
>>> b = [2,3]
>>> a.extend(b)
>>> a
[1, 2, 2, 3]
>>> print [1,2].extend([2,3])
None

I did not test this in linux.
History
Date User Action Args
2012-08-10 08:20:17lakisetrecipients: + laki
2012-08-10 08:20:17lakisetmessageid: <1344586817.32.0.627259473007.issue15614@psf.upfronthosting.co.za>
2012-08-10 08:20:16lakilinkissue15614 messages
2012-08-10 08:20:16lakicreate