Where is the help page for re.MatchObject?

John Machin sjmachin at lexicon.net
Wed Jul 28 03:16:55 EDT 2010


On Jul 28, 1:26 pm, Peng Yu <pengyu... at gmail.com> wrote:
> I know the library reference webpage for re.MatchObject is athttp://docs.python.org/library/re.html#re.MatchObject
>
> But I don't find such a help page in python help(). Does anybody know
> how to get it in help()?

Yes, but it doesn't tell you very much:

| >>> import re
| >>> help(re.match('x', 'x'))
| Help on SRE_Match object:
|
| class SRE_Match(__builtin__.object)
|
| >>>



More information about the Python-list mailing list