I have a problem.
i using python (2.7.7, 32bit) and py2exe (0.6.9) on Windows7 (64 bit).
my application structure, such as:
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 packing:
main child
(2) result after packing:
main main main ...(forever)
I want to receive (1) after packing.
please tell me how to receive (1) after packing.
love.
source share