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 skrah
Recipients mark.dickinson, rhettinger, skrah
Date 2015-07-12.19:19:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1436728764.28.0.733775785624.issue24620@psf.upfronthosting.co.za>
In-reply-to
Content
While trying to find a possible cause for #24546, I came across this
glitch:

Python 3.6.0a0 (default:02b81a82a57d, Jul 12 2015, 20:33:44) 
[GCC 4.8.4] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import random
>>> s = (3, (999999999999999,)*625, None)
>>> random.setstate(s)
>>> random.choice([1,2,3,4,5])
Segmentation fault (core dumped)
History
Date User Action Args
2015-07-12 19:19:24skrahsetrecipients: + skrah, rhettinger, mark.dickinson
2015-07-12 19:19:24skrahsetmessageid: <1436728764.28.0.733775785624.issue24620@psf.upfronthosting.co.za>
2015-07-12 19:19:24skrahlinkissue24620 messages
2015-07-12 19:19:24skrahcreate