# HG changeset patch # User Martin Panter # Date 1460173788 0 # Sat Apr 09 03:49:48 2016 +0000 # Branch 3.5 # Node ID 0e6515e2b58e8c3463ee686856fce9e94dec0a6b # Parent 09dc97edf454992c0067ec8c6c901abf806df9b9 Issue #25314: Remove confused statement about const argument diff -r 09dc97edf454 -r 0e6515e2b58e Doc/library/argparse.rst --- a/Doc/library/argparse.rst Fri Apr 08 15:06:54 2016 -0700 +++ b/Doc/library/argparse.rst Sat Apr 09 03:49:48 2016 +0000 @@ -720,8 +720,7 @@ Namespace(foo='1') * ``'store_const'`` - This stores the value specified by the const_ keyword - argument. (Note that the const_ keyword argument defaults to the rather - unhelpful ``None``.) The ``'store_const'`` action is most commonly used with + argument. The ``'store_const'`` action is most commonly used with optional arguments that specify some sort of flag. For example:: >>> parser = argparse.ArgumentParser()