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 r.david.murray
Recipients r.david.murray, zero79
Date 2009-04-23.19:28:39
SpamBayes Score 0.0016350215
Marked as misclassified No
Message-id <1240514921.62.0.748803749858.issue5822@psf.upfronthosting.co.za>
In-reply-to
Content
>>> [1,2,3].remove(1)
>>> repr([1,2,3].remove(1))
'None'

The remove method mutates the list, and therefore like all such mutating
methods, it returns None.
History
Date User Action Args
2009-04-23 19:28:41r.david.murraysetrecipients: + r.david.murray, zero79
2009-04-23 19:28:41r.david.murraysetmessageid: <1240514921.62.0.748803749858.issue5822@psf.upfronthosting.co.za>
2009-04-23 19:28:40r.david.murraylinkissue5822 messages
2009-04-23 19:28:40r.david.murraycreate