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 cmcqueen1975
Recipients Rhamphoryncus, amaury.forgeotdarc, brett.cannon, brian.curtin, bronger, cmcqueen1975, cwalther, gregory.p.smith, pitrou
Date 2010-07-02.02:59:08
SpamBayes Score 0.16847657
Marked as misclassified No
Message-id <1278039551.66.0.421353986422.issue1596321@psf.upfronthosting.co.za>
In-reply-to
Content
A follow-on re the cx_Freeze issue: I looked at the source code, and found it doesn't seem to be doing any thread creation. But I found that in the initscripts/Console.py, there are the following lines:

    if sys.version_info[:2] >= (2, 5):
        module = sys.modules.get("threading")
        if module is not None:
            module._shutdown()

If these lines are commented-out, then the error message at exit does not occur.
History
Date User Action Args
2010-07-02 02:59:12cmcqueen1975setrecipients: + cmcqueen1975, brett.cannon, gregory.p.smith, amaury.forgeotdarc, Rhamphoryncus, pitrou, bronger, cwalther, brian.curtin
2010-07-02 02:59:11cmcqueen1975setmessageid: <1278039551.66.0.421353986422.issue1596321@psf.upfronthosting.co.za>
2010-07-02 02:59:09cmcqueen1975linkissue1596321 messages
2010-07-02 02:59:08cmcqueen1975create