i have a problem.
i using python(2.7.7, 32bit) and py2exe(0.6.9) on Windows7(64bit).
my application structure such as the following:
from multiprocessing import Process
def child():
print "child"
def main():
print "main"
p = Process(target=child)
p.start()
p.join()
if __name__ == "__main__":
main()
(1)result before packaged:
main
child
(2)result after packaged:
main
main
main
...(forever)
i want to get (1) after packaging.
please tell me how to get (1) after packaging.
love.