python - pyprocessing doesn't quit on Windows -
here quote pyprocessing usage instructions wiki:
in principle, run() not return, can terminate application typing esc key.
if start pyprocessing interactively (not using subprocess.call
per this question), escape key nothing stop process:
>>> pyprocessing import * >>> # @ point, nothing close pyprocessing window except force-quit ... # making debugging pyprocessing app pretty hard
is there way kill pyprocessing process once it's started interactive python shell?
Comments
Post a Comment