This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2011年06月24日 12:46 by nedbat, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Messages (4) | |||
|---|---|---|---|
| msg138937 - (view) | Author: Ned Batchelder (nedbat) * (Python triager) | Date: 2011年06月24日 12:46 | |
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(...)
>>>
|
|||
| msg138959 - (view) | Author: SilentGhost (SilentGhost) * (Python triager) | Date: 2011年06月24日 16:20 | |
2.6 is in security-only mode, if I'm not mistaken. |
|||
| msg139008 - (view) | Author: Terry J. Reedy (terry.reedy) * (Python committer) | Date: 2011年06月25日 00:26 | |
Yes, and ditto for 3.1. |
|||
| msg180680 - (view) | Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) | Date: 2013年01月26日 15:19 | |
Fixed in issue16443. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:18 | admin | set | github: 56606 |
| 2013年01月26日 15:19:45 | serhiy.storchaka | set | status: open -> closed superseder: Add docstrings to regular expression match objects nosy: + serhiy.storchaka messages: + msg180680 resolution: duplicate stage: resolved |
| 2011年09月13日 15:00:52 | eric.araujo | set | nosy:
+ eric.araujo |
| 2011年06月25日 00:26:06 | terry.reedy | set | nosy:
+ terry.reedy messages: + msg139008 versions: - Python 3.1 |
| 2011年06月24日 16:20:25 | SilentGhost | set | nosy:
+ SilentGhost messages: + msg138959 versions: - Python 2.6 |
| 2011年06月24日 12:46:43 | nedbat | create | |