[issue16443] Add docstrings to regular expression match objects

2012-12-25 Thread Andrew Svetlov
Andrew Svetlov added the comment: Fixed in #16760 -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue16443] Add docstrings to regular expression match objects

2012-12-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: `MatchObject` term is not defined anywhere in the documentation. It will be better to use `match object` instead. -- nosy: +serhiy.storchaka ___ Python tracker _

[issue16443] Add docstrings to regular expression match objects

2012-12-23 Thread Andrew Svetlov
Andrew Svetlov added the comment: Pushed. Thank you, Anton! -- resolution: -> fixed stage: needs patch -> committed/rejected status: open -> closed versions: +Python 2.7 ___ Python tracker

[issue16443] Add docstrings to regular expression match objects

2012-12-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset c390dc999fcc by Andrew Svetlov in branch '2.7': Issue #16443: Add docstrings to regular expression match objects. http://hg.python.org/cpython/rev/c390dc999fcc -- ___ Python tracker

[issue16443] Add docstrings to regular expression match objects

2012-12-23 Thread Roundup Robot
Roundup Robot added the comment: New changeset e4f1b3565509 by Andrew Svetlov in branch '3.2': Issue #16443: Add docstrings to regular expression match objects. http://hg.python.org/cpython/rev/e4f1b3565509 New changeset 64e050c2d010 by Andrew Svetlov in branch '3.3': Issue #16443: Add docstring

[issue16443] Add docstrings to regular expression match objects

2012-12-23 Thread Anton Kasyanov
Anton Kasyanov added the comment: Created a patch with docstrings for match objects. Also added empty lines in pattern object docstrings according to http://www.python.org/dev/peps/pep-0007/#id7 -- keywords: +patch nosy: +a.kasyanov, asvetlov versions: -Python 2.7 Added file: http://b

[issue16443] Add docstrings to regular expression match objects

2012-11-09 Thread Ezio Melotti
Ezio Melotti added the comment: Do you mean http://docs.python.org/2/library/re.html#match-objects ? This doesn't seem to say anything too useful. -- ___ Python tracker ___ _

[issue16443] Add docstrings to regular expression match objects

2012-11-08 Thread Ezio Melotti
Changes by Ezio Melotti : -- components: +Regular Expressions nosy: +ezio.melotti, mrabarnett stage: -> needs patch versions: -Python 3.1 ___ Python tracker ___ ___

[issue16443] Add docstrings to regular expression match objects

2012-11-08 Thread Raymond Hettinger
New submission from Raymond Hettinger: The match objects currently do not have useful docstrings. An easy task is to add docstrings modeled after the text in the regular docs. import re mo = re.search('abc', 'abc') help(mo) -- assignee: docs@python components: Documentation keyw