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 ncdave4life
Recipients ncdave4life
Date 2012-03-19.04:42:21
SpamBayes Score 3.3894372e-05
Marked as misclassified No
Message-id <1332132143.66.0.7093323157.issue14367@psf.upfronthosting.co.za>
In-reply-to
Content
I noticed that pydoc doesn't work for pygame under python 3.2.1 or 3.2.2 for Win32; it just reports:

NotImplementedError: scrap module not available (ImportError: No module
named scrap)

I made a small patch to inspect.py to solve the problem (I just added a
try/expect around the failing statement in ismethoddescriptor).   Here's the diff:
http://www.burtonsys.com/python32/inspect.diff

With that patch, pydoc works with pygame, and reports just a few pygame issues:
*scrap* = <pygame.MissingModule object>
*sndarray* = <pygame.MissingModule object>
*surfarray* = <pygame.MissingModule object>
History
Date User Action Args
2012-03-19 04:42:23ncdave4lifesetrecipients: + ncdave4life
2012-03-19 04:42:23ncdave4lifesetmessageid: <1332132143.66.0.7093323157.issue14367@psf.upfronthosting.co.za>
2012-03-19 04:42:22ncdave4lifelinkissue14367 messages
2012-03-19 04:42:22ncdave4lifecreate