argparse missing in python 3

2019-06-22 15:18发布


does somebody know, why the argparse module didn't make it in python 3? it's new in python 2.7, but the 2.x branch is running out with 2.7. it makes no sense to me not to support it in the actual python 3 branch.

2条回答
欢心
2楼-- · 2019-06-22 15:51

It will be in Python 3.2. It was just added in Python 2.7, which was released just this July; Python 3.2 will be the next 3.x release after that date.

查看更多
Evening l夕情丶
3楼-- · 2019-06-22 15:58

argparse is in Python 3, 3.2 to be specific. See also: http://www.python.org/dev/peps/pep-0389/

查看更多
登录 后发表回答