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 ezio.melotti
Recipients dwt, ezio.melotti
Date 2012-01-17.10:24:35
SpamBayes Score 0.021188235
Marked as misclassified No
Message-id <1326795876.54.0.311177490071.issue13805@psf.upfronthosting.co.za>
In-reply-to
Content
This is by design.
Methods that mutate the object return None.
Methods that create a new object return the new object.
list.sort sorts the list in place, so it returns None.
History
Date User Action Args
2012-01-17 10:24:36ezio.melottisetrecipients: + ezio.melotti, dwt
2012-01-17 10:24:36ezio.melottisetmessageid: <1326795876.54.0.311177490071.issue13805@psf.upfronthosting.co.za>
2012-01-17 10:24:35ezio.melottilinkissue13805 messages
2012-01-17 10:24:35ezio.melotticreate