bpo-16468: Clarify which objects can be passed to "choices" in argparse (GH-15566) (GH-15587)

(cherry picked from commit 84125fed2a)

Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com>
This commit is contained in:
Miss Islington (bot) 2019-08-29 01:15:18 -07:00 committed by Raymond Hettinger
parent 102130a63c
commit 0d45d50e42
1 changed files with 2 additions and 3 deletions

View File

@ -1102,9 +1102,8 @@ container should match the type_ specified::
usage: doors.py [-h] {1,2,3}
doors.py: error: argument door: invalid choice: 4 (choose from 1, 2, 3)
Any object that supports the ``in`` operator can be passed as the *choices*
value, so :class:`dict` objects, :class:`set` objects, custom containers,
etc. are all supported.
Any container can be passed as the *choices* value, so :class:`list` objects,
:class:`set` objects, and custom containers are all supported.
required