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.
rypel
4,8742 gold badges27 silver badges36 bronze badges
2 Answers 2
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.
answered Sep 28, 2010 at 22:36
kindall
185k36 gold badges291 silver badges321 bronze badges
Sign up to request clarification or add additional context in comments.
Comments
argparse is in Python 3, 3.2 to be specific. See also: http://www.python.org/dev/peps/pep-0389/
answered Sep 28, 2010 at 22:34
Jim Brissom
33.2k4 gold badges41 silver badges33 bronze badges
Comments
Explore related questions
See similar questions with these tags.
lang-py