[Python-checkins] cpython (merge 3.2 -> default): Fix closes issue12663 - Correcting the ArgumentParser.error description. Patch

senthil.kumaran python-checkins at python.org
Wed Aug 3 01:45:07 CEST 2011


http://hg.python.org/cpython/rev/a5b3d5051fc7
changeset:   71715:a5b3d5051fc7
parent:      71711:b1cc72f66ec9
parent:      71714:5ff56995976c
user:        Senthil Kumaran <senthil at uthcode.com>
date:        Wed Aug 03 07:43:01 2011 +0800
summary:
  Fix closes issue12663 - Correcting the ArgumentParser.error description. Patch by Sandro Tosi.

files:
  Doc/library/argparse.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst
--- a/Doc/library/argparse.rst
+++ b/Doc/library/argparse.rst
@@ -1797,7 +1797,7 @@
 .. method:: ArgumentParser.error(message)
 
    This method prints a usage message including the *message* to the
-   standard output and terminates the program with a status code of 2.
+   standard error and terminates the program with a status code of 2.
 
 .. _upgrading-optparse-code:
 

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list