Re: [Python-Dev] inspect.py change for pygame

2012-03-18 Thread ncdave4life
Thank you, Brian! On Mon, Mar 19, 2012 at 12:20 AM, Brian Curtin [via Python] < ml-node+s6n4632000...@n6.nabble.com> wrote: > On Sun, Mar 18, 2012 at 23:13, ncdave4life <[hidden > email]> > wrote: > > ...Sorry, I'm a newbie to python-dev, so

Re: [Python-Dev] inspect.py change for pygame

2012-03-18 Thread Brian Curtin
On Sun, Mar 18, 2012 at 23:13, ncdave4life wrote: > 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 > tr

[Python-Dev] inspect.py change for pygame

2012-03-18 Thread ncdave4life
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).