Difference between revisions of "Fork"

From PyMOLWiki
Jump to navigation Jump to search
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
===DESCRIPTION===
 
 
'''spawn''' launches a Python script in a new thread which will run concurrently with the PyMOL interpreter. It can be run in its own namespace (like a Python module, default), a local name space, or in the global namespace.
 
'''spawn''' launches a Python script in a new thread which will run concurrently with the PyMOL interpreter. It can be run in its own namespace (like a Python module, default), a local name space, or in the global namespace.
 +
 +
'''fork''' is an alias for '''spawn'''.
  
 
===USAGE===
 
===USAGE===
  run python-script [, ( local | global | module | main | private )]
+
  spawn python-script [, ( local | global | module | main | private )]
  
 
===PYMOL API===
 
===PYMOL API===
Line 15: Line 16:
 
The best way to spawn processes at startup is to use the -l option (see "help launching").  
 
The best way to spawn processes at startup is to use the -l option (see "help launching").  
  
[[Category:Commands|fork]]
+
=== SEE ALSO ===
 +
 
 +
* [[run]]
 +
 
 +
[[Category:Commands|Fork]]

Latest revision as of 08:49, 14 September 2011

spawn launches a Python script in a new thread which will run concurrently with the PyMOL interpreter. It can be run in its own namespace (like a Python module, default), a local name space, or in the global namespace.

fork is an alias for spawn.

USAGE

spawn python-script [, ( local | global | module | main | private )]

PYMOL API

Not directly available. Instead, use cmd.do("spawn ...").

NOTES

The default mode for spawn is "module".

Due to an idiosyncracy in Pickle, you can not pickle objects directly created at the main level in a script run as "module", (because the pickled object becomes dependent on that module). Workaround: delegate construction to an imported module.

The best way to spawn processes at startup is to use the -l option (see "help launching").

SEE ALSO