This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2012年12月16日 13:53 by wim.glenn, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Messages (3) | |||
|---|---|---|---|
| msg177599 - (view) | Author: wim glenn (wim.glenn) * | Date: 2012年12月16日 13:53 | |
Any object that supports the in operator can be passed as the choices value, so dict objects, set objects, custom containers, etc. are all supported. (from http://docs.python.org/dev/library/argparse.html#choices ) Actual behaviour is contradicted by the docs - it seems the container must additionally be iterable. When using a custom container, argparse b0rks on trying to iterate through choices. Using a metavar prevents this, but it still breaks on cases where the element is not in the container. More details here: http://stackoverflow.com/questions/13833566/python-argparse-choices-from-an-infinite-set |
|||
| msg177602 - (view) | Author: R. David Murray (r.david.murray) * (Python committer) | Date: 2012年12月16日 14:21 | |
This is a duplicate of issue issue 16468, which may get closed with either a bug fix or a doc fix, depending on the outcome of the overall discussion. |
|||
| msg349913 - (view) | Author: Brendan Barnwell (BrenBarn) | Date: 2019年08月18日 03:09 | |
This issue has sat idle for six years. Meanwhile, the docs are still incorrect, giving every user wrong information about how the module works. Can we consider just changing the documentation instead of worrying about what the behavior should be or what the rationale is? |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:39 | admin | set | github: 60901 |
| 2019年08月18日 03:09:58 | BrenBarn | set | nosy:
+ BrenBarn messages: + msg349913 versions: + Python 3.5, Python 3.6, Python 3.7 |
| 2013年01月16日 07:58:27 | wim.glenn | set | nosy:
- wim.glenn |
| 2012年12月16日 14:21:37 | r.david.murray | set | status: open -> closed superseder: argparse only supports iterable choices nosy: + r.david.murray messages: + msg177602 type: enhancement -> behavior resolution: duplicate stage: resolved |
| 2012年12月16日 13:53:55 | wim.glenn | create | |