IDLE does not start on WinXP

G

George Carman

Please excuse the following mailing, I do not have access to a news server
and cannot post to comp.lang.python.

I recently installed Python 2.3.4 on WinXP. Command line interpreter works
fine but the IDLE GUI will not start. When run from a commandline I get the
following traceback. Both WinXP and McAfee firewalls are disabled. Any
suggestions would be appreciated.

C:\Python23\Lib\idlelib>idle.py
Traceback (most recent call last):
File "C:\Python23\Lib\idlelib\idle.py", line 23, in ?
idlelib.PyShell.main()
File "C:\Python23\lib\idlelib\PyShell.py", line 1282, in main
flist.pyshell = PyShell(flist)
File "C:\Python23\lib\idlelib\PyShell.py", line 764, in __init__
self.interp.start_subprocess()
File "C:\Python23\lib\idlelib\PyShell.py", line 364, in start_subprocess
self.transfer_path()
File "C:\Python23\lib\idlelib\PyShell.py", line 433, in transfer_path
self.runcommand("""if 1:
File "C:\Python23\lib\idlelib\PyShell.py", line 650, in runcommand
self.rpcclt.remotequeue("exec", "runcode", (code,), {})
File "C:\Python23\lib\idlelib\rpc.py", line 214, in remotequeue
return self.asyncreturn(seq)
File "C:\Python23\lib\idlelib\rpc.py", line 238, in asyncreturn
response = self.getresponse(seq, wait=0.05)
File "C:\Python23\lib\idlelib\rpc.py", line 278, in getresponse
response = self._getresponse(myseq, wait)
File "C:\Python23\lib\idlelib\rpc.py", line 298, in _getresponse
response = self.pollresponse(myseq, wait)
File "C:\Python23\lib\idlelib\rpc.py", line 423, in pollresponse
message = self.pollmessage(wait)
File "C:\Python23\lib\idlelib\rpc.py", line 375, in pollmessage
packet = self.pollpacket(wait)
File "C:\Python23\lib\idlelib\rpc.py", line 347, in pollpacket
if not self.ioready(wait):
File "C:\Python23\lib\idlelib\rpc.py", line 337, in ioready
r, w, x = select.select([self.sock.fileno()], [], [], wait)
select.error: (10022, 'An invalid argument was supplied')

_________________________________________________________________
Don’t just search. Find. Check out the new MSN Search!
http://search.msn.click-url.com/go/onm00200636ave/direct/01/
 
R

Russell Blau

George Carman said:
Please excuse the following mailing, I do not have access to a news server
and cannot post to comp.lang.python. True

I recently installed Python 2.3.4 on WinXP. Command line interpreter works
fine but the IDLE GUI will not start. When run from a commandline I get the
following traceback. Both WinXP and McAfee firewalls are disabled. Any
suggestions would be appreciated.

Since the traceback indicates that the error arose in a command related to
socket communication, I think the first thing you should check is your
firewall software. You should allow connections to 127.0.0.1 (the loopback
to your own machine). (If you've installed XP Service Pack 2, you now have
firewall software whether you knew it or not.)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,019
Latest member
RoxannaSta

Latest Threads

Top