Richard Oudkerk added the comment:

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.)

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue9122>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to