Lines Matching refs:store_true
277 action="store_true")
303 ``"store_true"``. This means that, if the option is specified,
323 action="store_true")
353 parser.add_argument("-v", "--verbose", action="store_true",
500 * Yes, it's now more of a flag (similar to ``action="store_true"``) in the
503 * It also behaves similar to "store_true" action.
508 * And, just like the "store_true" action, if you don't specify the ``-v`` flag,
682 group.add_argument("-v", "--verbose", action="store_true")
683 group.add_argument("-q", "--quiet", action="store_true")
725 group.add_argument("-v", "--verbose", action="store_true")
726 group.add_argument("-q", "--quiet", action="store_true")