[issue12397] re match object methods have no docstrings

2013-01-26 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Fixed in issue16443. -- nosy: +serhiy.storchaka resolution: -> duplicate stage: -> committed/rejected status: open -> closed superseder: -> Add docstrings to regular expression match objects ___ Python tracker <

[issue12397] re match object methods have no docstrings

2011-09-13 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +eric.araujo ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue12397] re match object methods have no docstrings

2011-06-24 Thread Terry J. Reedy
Terry J. Reedy added the comment: Yes, and ditto for 3.1. -- nosy: +terry.reedy versions: -Python 3.1 ___ Python tracker ___ ___ Pyt

[issue12397] re match object methods have no docstrings

2011-06-24 Thread SilentGhost
SilentGhost added the comment: 2.6 is in security-only mode, if I'm not mistaken. -- nosy: +SilentGhost versions: -Python 2.6 ___ Python tracker ___ ___

[issue12397] re match object methods have no docstrings

2011-06-24 Thread Ned Batchelder
New submission from Ned Batchelder : If I have a match object in hand, and ask for help on its methods, there is no information: >>> m = re.match("a", "a") >>> help(m.group) Help on built-in function group: group(...) >>> -- messages: 138937 nosy: nedbat priority: normal severity: no