]> granicus.if.org Git - python/commitdiff
Fix #8364. Update the setquit docstring and change a built-in to builtin.
authorBrian Curtin <brian.curtin@gmail.com>
Mon, 12 Apr 2010 23:30:49 +0000 (23:30 +0000)
committerBrian Curtin <brian.curtin@gmail.com>
Mon, 12 Apr 2010 23:30:49 +0000 (23:30 +0000)
Lib/site.py

index b36df1f5dce4a876b9370f0c5ca37f72058dc89b..865fffb7b52970412f6ef5800919061fcae51b33 100644 (file)
@@ -325,8 +325,10 @@ def setBEGINLIBPATH():
 
 
 def setquit():
-    """Define new built-ins 'quit' and 'exit'.
-    These are simply strings that display a hint on how to exit.
+    """Define new builtins 'quit' and 'exit'.
+
+    These are objects which make the interpreter exit when called.
+    The repr of each object contains a hint at how it works.
 
     """
     if os.sep == ':':
@@ -433,7 +435,7 @@ def setcopyright():
 
 
 class _Helper(object):
-    """Define the built-in 'help'.
+    """Define the builtin 'help'.
     This is a wrapper around pydoc.help (with a twist).
 
     """