From: Berker Peksag Date: Sun, 11 Sep 2016 10:02:27 +0000 (+0300) Subject: Issue #27991: Remove incorrect sentence about store_true X-Git-Tag: v3.6.0b1~62^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=53ba2d10e0d94a7609c0a71d41956a58e6a68f9d;p=thirdparty%2FPython%2Fcpython.git Issue #27991: Remove incorrect sentence about store_true Patch by py.user. --- diff --git a/Doc/howto/argparse.rst b/Doc/howto/argparse.rst index cfe98688757c..3b79b92082a7 100644 --- a/Doc/howto/argparse.rst +++ b/Doc/howto/argparse.rst @@ -503,8 +503,8 @@ to count the number of occurrences of a specific optional arguments: * 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.