Created
September 25, 2011 16:46
-
-
Save netdesign/1240821 to your computer and use it in GitHub Desktop.
Traceback from running two processes with the same function
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Process Process-2: | |
| Traceback (most recent call last): | |
| File "/usr/lib/python2.6/multiprocessing/process.py", line 232, in _bootstrap | |
| self.run() | |
| File "/usr/lib/python2.6/multiprocessing/process.py", line 88, in run | |
| self._target(*self._args, **self._kwargs) | |
| TypeError: 'Process' object is not callable | |
| ^CError in atexit._run_exitfuncs: | |
| Traceback (most recent call last): | |
| File "/usr/lib/python2.6/atexit.py", line 24, in _run_exitfuncs | |
| func(*targs, **kargs) | |
| File "/usr/lib/python2.6/multiprocessing/util.py", line 269, in _exit_function | |
| p.join() | |
| File "/usr/lib/python2.6/multiprocessing/process.py", line 119, in join | |
| res = self._popen.wait(timeout) | |
| File "/usr/lib/python2.6/multiprocessing/forking.py", line 117, in wait | |
| return self.poll(0) | |
| File "/usr/lib/python2.6/multiprocessing/forking.py", line 106, in poll | |
| pid, sts = os.waitpid(self.pid, flag) | |
| KeyboardInterrupt | |
| Error in sys.exitfunc: | |
| Traceback (most recent call last): | |
| File "/usr/lib/python2.6/atexit.py", line 24, in _run_exitfuncs | |
| func(*targs, **kargs) | |
| File "/usr/lib/python2.6/multiprocessing/util.py", line 269, in _exit_function | |
| p.join() | |
| File "/usr/lib/python2.6/multiprocessing/process.py", line 119, in join | |
| res = self._popen.wait(timeout) | |
| File "/usr/lib/python2.6/multiprocessing/forking.py", line 117, in wait | |
| return self.poll(0) | |
| File "/usr/lib/python2.6/multiprocessing/forking.py", line 106, in poll | |
| pid, sts = os.waitpid(self.pid, flag) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment