On 8/10/2013 10:19 PM, Devyn Collier Johnson wrote:
I am checking my 1292-line script for syntax errors. I ran the following commands in a terminal to check for errors, but I do not see the error.collier@Nacho-Laptop:/media/collier/AI/Pysh$ python3 -m py_compile ./beta_engine File "./beta_engine", line 344 JOB_WRITEURGFILES = multiprocessing.Process(write2file('./mem/ENGINE_PID', ENGINEPID);
That should be a comma; so should the next semicolon below.
write2file(SENTEMPPATH, ''); write2file(INPUTMEM, ''));
This last one is 'correct', but delete it
JOB_WRITEURGFILES.start()
and put this statement on a line by itself. -- Terry Jan Reedy -- http://mail.python.org/mailman/listinfo/python-list
