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 mg, r.david.murray
Date 2009-03-24.17:02:00
SpamBayes Score 4.5308378e-05
Marked as misclassified No
Message-id <1237914122.87.0.659784767479.issue2485@psf.upfronthosting.co.za>
In-reply-to
Content
In 2.5, the fact that list was unhashable was checked in the list
object, and that message was hardcoded there.  In 2.6, the check for
unhashableness uses generic code, and the resulting error substitutes
the type name into the message.  This message already existed and was
used for other types, the difference between 2.5 and 2.6 is that list is
now covered by the generic code and is not a special case.

So, yes, this was intentional and no, it isn't going to get changed.
History
Date User Action Args
2009-03-24 17:02:03r.david.murraysetrecipients: + r.david.murray, mg
2009-03-24 17:02:02r.david.murraysetmessageid: <1237914122.87.0.659784767479.issue2485@psf.upfronthosting.co.za>
2009-03-24 17:02:01r.david.murraylinkissue2485 messages
2009-03-24 17:02:00r.david.murraycreate