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.

Author vstinner
Recipients Arfrever, eric.araujo, vstinner
Date 2011-05-07.08:34:56
SpamBayes Score 0.00025198256
Marked as misclassified No
Message-id <1304757297.83.0.277518497424.issue11995@psf.upfronthosting.co.za>
In-reply-to
Content
> Isn’t the root problem that pydoc uses import rather than imp or PEP 302 things?  We could change that.

It's possible to get the documentation of some module without loading them: pydoc already supports get_source() method of a module loader.

But my concern is more about C modules: you have to load them to get their documentation, but you can never a unload C modules (you have to exit Python).
History
Date User Action Args
2011-05-07 08:34:57vstinnersetrecipients: + vstinner, eric.araujo, Arfrever
2011-05-07 08:34:57vstinnersetmessageid: <1304757297.83.0.277518497424.issue11995@psf.upfronthosting.co.za>
2011-05-07 08:34:56vstinnerlinkissue11995 messages
2011-05-07 08:34:56vstinnercreate