[Python-checkins] r60137 - python/trunk/Doc/library/constants.rst python/trunk/Doc/library/functions.rst

georg.brandl python-checkins at python.org
Sun Jan 20 14:08:38 CET 2008


Author: georg.brandl
Date: Sun Jan 20 14:08:37 2008
New Revision: 60137

Modified:
   python/trunk/Doc/library/constants.rst
   python/trunk/Doc/library/functions.rst
Log:
#652749: document the constants added to the builtins by site.py.


Modified: python/trunk/Doc/library/constants.rst
==============================================================================
--- python/trunk/Doc/library/constants.rst	(original)
+++ python/trunk/Doc/library/constants.rst	Sun Jan 20 14:08:37 2008
@@ -1,4 +1,3 @@
-
 Built-in Constants
 ==================
 
@@ -47,4 +46,28 @@
 
    This constant is true if Python was not started with an :option:`-O` option.
    Assignments to :const:`__debug__` are illegal and raise a :exc:`SyntaxError`.
-   See also the :keyword:`assert` statement.
\ No newline at end of file
+   See also the :keyword:`assert` statement.
+
+
+Constants added by the :mod:`site` module
+-----------------------------------------
+
+The :mod:`site` module (which is imported automatically during startup, except
+if the :option:`-S` command-line option is given) adds several constants to the
+built-in namespace.  They are useful for the interactive interpreter shell and
+should not be used in programs.
+
+.. data:: quit([code=None])
+          exit([code=None])
+
+   Objects that when printed, print a message like "Use quit() or Ctrl-D
+   (i.e. EOF) to exit", and when called, raise :exc:`SystemExit` with the
+   specified exit code, and when .
+
+.. data:: copyright
+          license
+          credits
+
+   Objects that when printed, print a message like "Type license() to see the
+   full license text", and when called, display the corresponding text in a
+   pager-like fashion (one screen at a time).

Modified: python/trunk/Doc/library/functions.rst
==============================================================================
--- python/trunk/Doc/library/functions.rst	(original)
+++ python/trunk/Doc/library/functions.rst	Sun Jan 20 14:08:37 2008
@@ -511,6 +511,8 @@
    topic, and a help page is printed on the console.  If the argument is any other
    kind of object, a help page on the object is generated.
 
+   This function is added to the built-in namespace by the :mod:`site` module.
+
    .. versionadded:: 2.2
 
 


More information about the Python-checkins mailing list