]> granicus.if.org Git - python/commitdiff
#10728: the default for printing help is sys.stdout, not stderr.
authorR. David Murray <rdmurray@bitdance.com>
Sat, 18 Dec 2010 16:39:06 +0000 (16:39 +0000)
committerR. David Murray <rdmurray@bitdance.com>
Sat, 18 Dec 2010 16:39:06 +0000 (16:39 +0000)
Doc/library/argparse.rst

index 72878c547485d6d5d670bc3e76e9e2bd68692846..42f9c42a51c9cfde46cbfb539a19c7cd370b0a98 100644 (file)
@@ -1658,14 +1658,14 @@ are available:
 .. method:: ArgumentParser.print_usage(file=None)
 
    Print a brief description of how the :class:`ArgumentParser` should be
-   invoked on the command line.  If *file* is ``None``, :data:`sys.stderr` is
+   invoked on the command line.  If *file* is ``None``, :data:`sys.stdout` is
    assumed.
 
 .. method:: ArgumentParser.print_help(file=None)
 
    Print a help message, including the program usage and information about the
    arguments registered with the :class:`ArgumentParser`.  If *file* is
-   ``None``, :data:`sys.stderr` is assumed.
+   ``None``, :data:`sys.stdout` is assumed.
 
 There are also variants of these methods that simply return a string instead of
 printing it: