This is a read-only mirror of pymolwiki.org

Difference between revisions of "Quit"

From PyMOL Wiki
Jump to navigation Jump to search
m (6 revisions)
 
(return code)
Line 1: Line 1:
 +
[[quit]] terminates the program.
  
'''quit''' terminates the program.
+
''Changed in PyMOL 1.6: Added return code''
  
===USAGE===
+
== Usage ==
quit
 
  
===PYMOL API===
+
quit [code]
 +
 
 +
== Arguments ==
 +
 
 +
* '''code''' = int: Return code {default: 0}
 +
 
 +
== Python API ==
 
<source lang="python">
 
<source lang="python">
cmd.quit()  
+
cmd.quit(code: int)
 
</source>
 
</source>
  
 
[[Category:Commands|Quit]]
 
[[Category:Commands|Quit]]
 
[[Category:Input Output Module|Quit]]
 
[[Category:Input Output Module|Quit]]

Revision as of 20:21, 2 December 2020

quit terminates the program.

Changed in PyMOL 1.6: Added return code

Usage

quit [code]

Arguments

  • code = int: Return code {default: 0}

Python API

cmd.quit(code: int)