[Python-checkins] cpython (3.5): Issue #27991: Remove incorrect sentence about store_true

berker.peksag python-checkins at python.org
Sun Sep 11 06:02:26 EDT 2016


https://hg.python.org/cpython/rev/0e45cd7859ec
changeset:   103614:0e45cd7859ec
branch:      3.5
parent:      103606:c6e45f1f76b5
user:        Berker Peksag <berker.peksag at gmail.com>
date:        Sun Sep 11 13:02:27 2016 +0300
summary:
  Issue #27991: Remove incorrect sentence about store_true

Patch by py.user.

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


diff --git a/Doc/howto/argparse.rst b/Doc/howto/argparse.rst
--- a/Doc/howto/argparse.rst
+++ b/Doc/howto/argparse.rst
@@ -503,8 +503,8 @@
 * Now here's a demonstration of what the "count" action gives. You've probably
   seen this sort of usage before.
 
-* And, just like the "store_true" action, if you don't specify the ``-v`` flag,
-  that flag is considered to have ``None`` value.
+* And if you don't specify the ``-v`` flag, that flag is considered to have
+  ``None`` value.
 
 * As should be expected, specifying the long form of the flag, we should get
   the same output.

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


More information about the Python-checkins mailing list