Na dan Sun, 24 Sep 2006 14:35:31 -0700, Paul Rubin je napisao:
> Try it this way:
> 
>      import os, sys
>      print "Entering program"
> 
>      if os.fork():
>         sys.exit()              # parent process exits so shell returns
> 
>      while (1):                 # child process continues
>             pass    # some other work

This works! Thanks a bunch, Paul.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to