[Python-Dev] inspect.py change for pygame
I noticed that pydoc doesn't work for pygame under python 3.2.1 for Win32: 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 http://www.burtonsys.com/python32/inspect.diff With that patch, pydoc works with pygame, and reports just a few issues: *scrap* = *sndarray* = *surfarray* = Sorry, I'm a newbie to python-dev, so please forgive my ignorance, but what do I need to do get this fix (or something similar) into a future release? -- View this message in context: http://python.6.n6.nabble.com/inspect-py-change-for-pygame-tp4631993p4631993.html Sent from the Python - python-dev mailing list archive at Nabble.com. ___ Python-Dev mailing list [email protected] http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
Re: [Python-Dev] inspect.py change for pygame
Thank you, Brian! On Mon, Mar 19, 2012 at 12:20 AM, Brian Curtin [via Python] < [email protected]> wrote: > On Sun, Mar 18, 2012 at 23:13, ncdave4life <[hidden > email]<http://user/SendEmail.jtp?type=node&node=4632000&i=0>> > wrote: > > ...Sorry, I'm a newbie to python-dev, so please forgive my ignorance, > but what > > do I need to do get this fix (or something similar) into a future > release? > > Patches to fix Python should be posted to http://bugs.python.org/. > From there they'll be classified, reviewed, and if all is well, > committed. It's much easier for patches to be tracked on there instead > of email. > -- View this message in context: http://python.6.n6.nabble.com/inspect-py-change-for-pygame-tp4631993p4632010.html Sent from the Python - python-dev mailing list archive at Nabble.com.___ Python-Dev mailing list [email protected] http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
