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 Marcin.Szamotulski
Recipients Marcin.Szamotulski
Date 2013-05-20.02:18:41
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1369016322.42.0.272832887604.issue18019@psf.upfronthosting.co.za>
In-reply-to
Content
This simple snipet will crash python:
>>> d={}
>>> v=d.viewvalues()
>>> k=d.viewkeys()
>>> d[v]=k
>>> k
Segmentation fault

I am using python2.7.  Python3.2 does not have views while .keys() and .values() methods raise RuntimeError: maximum recursion depth exceeded, which is expected.
History
Date User Action Args
2013-05-20 02:18:42Marcin.Szamotulskisetrecipients: + Marcin.Szamotulski
2013-05-20 02:18:42Marcin.Szamotulskisetmessageid: <1369016322.42.0.272832887604.issue18019@psf.upfronthosting.co.za>
2013-05-20 02:18:42Marcin.Szamotulskilinkissue18019 messages
2013-05-20 02:18:41Marcin.Szamotulskicreate