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 rhettinger
Recipients eric.smith, rhettinger, rowan.bradley, scoder, tim.peters
Date 2021-03-25.21:22:24
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1616707344.25.0.58519239401.issue43618@roundup.psfhosted.org>
In-reply-to
Content
As an immediate fix to your problem, replace this line:

    random.shuffle(questions_element)

with:

    questions = list(questions_element)
    random.shuffle(questions)
    questions_element[:] = questions
History
Date User Action Args
2021-03-25 21:22:24rhettingersetrecipients: + rhettinger, tim.peters, scoder, eric.smith, rowan.bradley
2021-03-25 21:22:24rhettingersetmessageid: <1616707344.25.0.58519239401.issue43618@roundup.psfhosted.org>
2021-03-25 21:22:24rhettingerlinkissue43618 messages
2021-03-25 21:22:24rhettingercreate