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 steven.daprano
Recipients Serge Anuchin, mark.dickinson, r.david.murray, rhettinger, serhiy.storchaka, skrah, steven.daprano, tim.peters, vstinner
Date 2015-07-05.02:10:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <20150705021033.GS10773@ando.pearwood.info>
In-reply-to <1435766790.47.0.448977546687.issue24546@psf.upfronthosting.co.za>
Content
I've been running this snippet for almost 72 hours now:

s = u"БГДЖИЛЦЫЭu042eЯАВЕКМРТu042312456789"
while True:
    state = random.getstate()
    try:
        a = random.choice(s)
    except IndexError:
        break

with no results yet. I cannot replicate the original error.
History
Date User Action Args
2015-07-05 02:10:39steven.dapranosetrecipients: + steven.daprano, tim.peters, rhettinger, mark.dickinson, vstinner, r.david.murray, skrah, serhiy.storchaka, Serge Anuchin
2015-07-05 02:10:39steven.dapranolinkissue24546 messages
2015-07-05 02:10:38steven.dapranocreate