Staging
v0.5.1
Revision f5f9d99974febbff6d4d55ef36bbfa0c71ed0738 authored by Barry Warsaw on 12 September 2008, 23:35:48 UTC, committed by Barry Warsaw on 12 September 2008, 23:35:48 UTC
1 parent 1e62aec
Raw File
__main__.rst

:mod:`__main__` --- Top-level script environment
================================================

.. module:: __main__
   :synopsis: The environment where the top-level script is run.


This module represents the (otherwise anonymous) scope in which the
interpreter's main program executes --- commands read either from standard
input, from a script file, or from an interactive prompt.  It is this
environment in which the idiomatic "conditional script" stanza causes a script
to run::

   if __name__ == "__main__":
       main()

back to top