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 sbt
Recipients amyodov, sbt
Date 2013-06-20.14:24:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1371738279.62.0.261040696237.issue9122@psf.upfronthosting.co.za>
In-reply-to
Content
We don't do non-security updates on Python 2.6 anymore.

As a workaround you might be able to do something like

    import sys, multiprocessing
    sys.frozen = True    # or multiprocessing.forking.WINEXE = True

    ...

    if __name__ == '__main__':
        multiprocessing.freeze_support()
        ...

(I am not familiar with using Cython.)
History
Date User Action Args
2013-06-20 14:24:39sbtsetrecipients: + sbt, amyodov
2013-06-20 14:24:39sbtsetmessageid: <1371738279.62.0.261040696237.issue9122@psf.upfronthosting.co.za>
2013-06-20 14:24:39sbtlinkissue9122 messages
2013-06-20 14:24:39sbtcreate