diff options
author | Berker Peksag <berker.peksag@gmail.com> | 2016-09-11 10:02:56 (GMT) |
---|---|---|
committer | Berker Peksag <berker.peksag@gmail.com> | 2016-09-11 10:02:56 (GMT) |
commit | 1cb7aaa9b195eafe3f6c44dd77c592d5e3f7ab03 (patch) | |
tree | 9962fa0a0818998ee43468016b4fdc11b0b6268c /Doc/howto | |
parent | ab994ed8b97e1b0dac151ec827c857f5e7277565 (diff) | |
parent | 53ba2d10e0d94a7609c0a71d41956a58e6a68f9d (diff) | |
download | cpython-1cb7aaa9b195eafe3f6c44dd77c592d5e3f7ab03.zip cpython-1cb7aaa9b195eafe3f6c44dd77c592d5e3f7ab03.tar.gz cpython-1cb7aaa9b195eafe3f6c44dd77c592d5e3f7ab03.tar.bz2 |
Issue #27991: Merge from 3.5
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/argparse.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/argparse.rst b/Doc/howto/argparse.rst index 7a60165..7e161a5 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. |