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 gvanrossum
Recipients belopolsky, exarkun, gvanrossum, lpd, rhettinger
Date 2008-03-08.05:29:54
SpamBayes Score 0.37932524
Marked as misclassified No
Message-id <1204954199.29.0.560174419676.issue1733184@psf.upfronthosting.co.za>
In-reply-to
Content
Alexander nailed my motivation.

Have the proponents for this change really thought through that making
slices hashable means that henceforth this code will work?

d = {}
d[:] = [1, 2, 3]      # surprise here
print d               # prints {slice(None, None, None): [1, 2, 3]}
History
Date User Action Args
2008-03-08 05:30:00gvanrossumsetspambayes_score: 0.379325 -> 0.37932524
recipients: + gvanrossum, rhettinger, lpd, exarkun, belopolsky
2008-03-08 05:29:59gvanrossumsetspambayes_score: 0.379325 -> 0.379325
messageid: <1204954199.29.0.560174419676.issue1733184@psf.upfronthosting.co.za>
2008-03-08 05:29:57gvanrossumlinkissue1733184 messages
2008-03-08 05:29:56gvanrossumcreate