New GitHub issue #118764 from omurad:<br>

<hr>

<pre>
The `store_true`/`store_false` example shows that

```
parser = argparse.ArgumentParser()
parser.add_argument('--foo', action='store_true')
parser.add_argument('--bar', action='store_false')
parser.add_argument('--baz', action='store_false')
parser.parse_args('--foo --bar'.split())
```
Returns
```
Namespace(foo=True, bar=False, baz=True)
```
`baz` should equal `False` since its action is `store_false`
</pre>

<hr>

<a href="https://github.com/python/cpython/issues/118764">View on GitHub</a>
<p>Labels: docs</p>
<p>Assignee: </p>