]> granicus.if.org Git - python/commitdiff
Issue #11699: fix documentation of OptionParser.get_option_group. Patch by Petri...
authorEli Bendersky <eliben@gmail.com>
Sat, 30 Jul 2011 08:14:32 +0000 (11:14 +0300)
committerEli Bendersky <eliben@gmail.com>
Sat, 30 Jul 2011 08:14:32 +0000 (11:14 +0300)
Doc/library/optparse.rst

index 58fb7cd7322dea8539e132b40ebdfb6423b27ed5..fddc1fbe8b84e37dafff79c29f636443618f2df9 100644 (file)
@@ -655,8 +655,9 @@ option groups is:
 
 .. method:: OptionParser.get_option_group(opt_str)
 
-   Return, if defined, the :class:`OptionGroup` that has the title or the long
-   description equals to *opt_str*
+   Return the :class:`OptionGroup` to which the short or long option
+   string *opt_str* (e.g. ``'-o'`` or ``'--option'``) belongs. If
+   there's no such :class:`OptionGroup`, return ``None``.
 
 .. _optparse-printing-version-string: