3 messages in org.python.python-bugs-list[ python-Bugs-925628 ] help does not ...
FromSent OnAttachments
SourceForge.netMar 29, 2004 4:33 pm 
SourceForge.netMar 29, 2004 4:34 pm 
SourceForge.netMar 30, 2004 3:02 pm 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:[ python-Bugs-925628 ] help does not help with imported objectsActions...
From:SourceForge.net (nore@sourceforge.net)
Date:Mar 29, 2004 4:33:51 pm
List:org.python.python-bugs-list

Bugs item #925628, was opened at 2004-03-29 16:34 Message generated for change (Tracker Item Submitted) made by Item Submitter You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=105470&aid=925628&group_id=5470

Category: Python Interpreter Core Group: None Status: Open Resolution: None Priority: 5 Submitted By: Jim Jewett (jimjjewett) Assigned to: Nobody/Anonymous (nobody) Summary: help does not help with imported objects

Initial Comment: help(re) just says it is a wrapper for sre. To get actually help, you need to explicitly import sre as well.

re.__doc__ = re.__doc__ + sre.__doc__ helps, but still does not list information on classes or exported functions.

Specific requests, such as

help(re.subn)

do work; it is only the module-level help that is lacking when a module reexports imported objects.

----------------------------------------------------------------------