summaryrefslogtreecommitdiffstats
path: root/Doc/howto/argparse.rst
diff options
context:
space:
mode:
authorTerry Jan Reedy <tjreedy@udel.edu>2014-10-22 21:59:53 (GMT)
committerTerry Jan Reedy <tjreedy@udel.edu>2014-10-22 21:59:53 (GMT)
commited91883bf537aec64eea7d75500f7d36d58b2713 (patch)
tree4efe4e03bf7805ee7831a412fc66cb50dcac553d /Doc/howto/argparse.rst
parent55640c13151f302324c5ff72f27085d498a6ca2d (diff)
downloadcpython-ed91883bf537aec64eea7d75500f7d36d58b2713.zip
cpython-ed91883bf537aec64eea7d75500f7d36d58b2713.tar.gz
cpython-ed91883bf537aec64eea7d75500f7d36d58b2713.tar.bz2
Issue #16863: Explain difference between text and 2.7 behavior.
Diffstat (limited to 'Doc/howto/argparse.rst')
-rw-r--r--Doc/howto/argparse.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/howto/argparse.rst b/Doc/howto/argparse.rst
index f110a55..f113c98 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::