From: Terry Jan Reedy Date: Wed, 22 Oct 2014 21:59:53 +0000 (-0400) Subject: Issue #16863: Explain difference between text and 2.7 behavior. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ed91883bf537aec64eea7d75500f7d36d58b2713;p=python Issue #16863: Explain difference between text and 2.7 behavior. --- diff --git a/Doc/howto/argparse.rst b/Doc/howto/argparse.rst index f110a55bba..f113c98478 100644 --- a/Doc/howto/argparse.rst +++ b/Doc/howto/argparse.rst @@ -8,6 +8,8 @@ Argparse Tutorial This tutorial is intended to be a gentle introduction to :mod:`argparse`, the recommended command-line parsing module in the Python standard library. +This was written for argparse in Python 3. A few details are different in 2.x, +especially some exception messages, which were improved in 3.x. .. note::