[Python-checkins] cpython (2.7): Fix missing class name in markup. Found by Tanky Woo on docs at .

georg.brandl python-checkins at python.org
Sun Oct 6 13:09:29 CEST 2013


http://hg.python.org/cpython/rev/a423379bfb1a
changeset:   86079:a423379bfb1a
branch:      2.7
parent:      86072:2b0401e50fc3
user:        Georg Brandl <georg at python.org>
date:        Sun Oct 06 13:09:59 2013 +0200
summary:
  Fix missing class name in markup. Found by Tanky Woo on docs at .

files:
  Doc/library/argparse.rst |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/library/argparse.rst b/Doc/library/argparse.rst
--- a/Doc/library/argparse.rst
+++ b/Doc/library/argparse.rst
@@ -1666,7 +1666,7 @@
 Mutual exclusion
 ^^^^^^^^^^^^^^^^
 
-.. method:: add_mutually_exclusive_group(required=False)
+.. method:: ArgumentParser.add_mutually_exclusive_group(required=False)
 
    Create a mutually exclusive group. :mod:`argparse` will make sure that only
    one of the arguments in the mutually exclusive group was present on the

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list