Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: Python: Bugs

[issue7265] IDLE not working

 

 

Python bugs RSS feed   Index | Next | Previous | View Threaded


report at bugs

Nov 4, 2009, 8:51 PM

Post #1 of 5 (333 views)
Permalink
[issue7265] IDLE not working

New submission from Carey <carey.metcalfe [at] gmail>:

IDLE will not open in windows 7 64 bit

My debug log is as follows:


Microsoft (R) Windows Debugger Version 6.11.0001.404 AMD64
Copyright (c) Microsoft Corporation. All rights reserved.

CommandLine: C:\Python31\pythonw.exe
Symbol search path is: srv*
Executable search path is:
ModLoad: 00000000`1d000000 00000000`1d00b000 pythonw.exe
ModLoad: 00000000`76f20000 00000000`770cb000 ntdll.dll
ModLoad: 00000000`76e00000 00000000`76f1f000
C:\Windows\system32\kernel32.dll
ModLoad: 000007fe`fd1e0000 000007fe`fd24b000
C:\Windows\system32\KERNELBASE.dll
ModLoad: 00000000`1e000000 00000000`1e2b0000
C:\Windows\system32\python31.dll
ModLoad: 00000000`76d00000 00000000`76dfa000
C:\Windows\system32\USER32.dll
ModLoad: 000007fe`ff1c0000 000007fe`ff227000 C:\Windows\system32\GDI32.dll
ModLoad: 000007fe`ff1b0000 000007fe`ff1be000 C:\Windows\system32\LPK.dll
ModLoad: 000007fe`fd380000 000007fe`fd44a000 C:\Windows\system32\USP10.dll
ModLoad: 000007fe`fdb30000 000007fe`fdbcf000
C:\Windows\system32\msvcrt.dll
ModLoad: 000007fe`fda50000 000007fe`fdb2b000
C:\Windows\system32\ADVAPI32.dll
ModLoad: 000007fe`fdd00000 000007fe`fdd1f000
C:\Windows\SYSTEM32\sechost.dll
ModLoad: 000007fe`fd250000 000007fe`fd37e000
C:\Windows\system32\RPCRT4.dll
ModLoad: 000007fe`fdf00000 000007fe`fec86000
C:\Windows\system32\SHELL32.dll
ModLoad: 000007fe`fec90000 000007fe`fed01000
C:\Windows\system32\SHLWAPI.dll
ModLoad: 00000000`730a0000 00000000`7313d000
C:\Windows\WinSxS\amd64_microsoft.vc90.crt_1fc8b3b9a1e18e3b_9.0.30729.4926_none_08e1a05ba83fe554\MSVCR90.dll
(1284.19dc): Break instruction exception - code 80000003 (first chance)
ntdll!LdrpDoDebuggerBreak+0x30:
00000000`76fd1220 cc int 3
0:000> g
ModLoad: 000007fe`fcd50000 000007fe`fcda7000
C:\Windows\system32\apphelp.dll
ModLoad: 000007fe`fd810000 000007fe`fd83e000 C:\Windows\system32\IMM32.DLL
ModLoad: 000007fe`fed90000 000007fe`fee99000 C:\Windows\system32\MSCTF.dll
ntdll!NtTerminateProcess+0xa:
00000000`76f7017a c3 ret
0:000> g
^ No runnable debuggees error in 'g'
0:000> g
^ No runnable debuggees error in 'g'



It seems it cant find a file that it needs, but i dont know why.

----------
components: IDLE
messages: 94919
nosy: Carey
severity: normal
status: open
title: IDLE not working
type: behavior
versions: Python 3.1

_______________________________________
Python tracker <report [at] bugs>
<http://bugs.python.org/issue7265>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/list-python-bugs%40lists.gossamer-threads.com


report at bugs

Nov 4, 2009, 8:57 PM

Post #2 of 5 (314 views)
Permalink
[issue7265] IDLE not working [In reply to]

Martin v. Löwis <martin [at] v> added the comment:

Please open a shell (cmd.exe), then

cd c:\python31
python.exe Lib\idlelib\idle.py

and report any python error messages that you receive.

----------
nosy: +loewis

_______________________________________
Python tracker <report [at] bugs>
<http://bugs.python.org/issue7265>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/list-python-bugs%40lists.gossamer-threads.com


report at bugs

Nov 5, 2009, 5:41 AM

Post #3 of 5 (308 views)
Permalink
[issue7265] IDLE not working [In reply to]

Carey <carey.metcalfe [at] gmail> added the comment:

Running as an admin in Windows 7 64 bit


C:\>cd python31
cd python31

C:\Python31>python.exe lib/idlelib/idle.py
python.exe lib/idlelib/idle.py
Traceback (most recent call last):
File "lib/idlelib/idle.py", line 11, in <module>
idlelib.PyShell.main()
File "C:\Python31\lib\idlelib\PyShell.py", line 1388, in main
shell = flist.open_shell()
File "C:\Python31\lib\idlelib\PyShell.py", line 277, in open_shell
self.pyshell = PyShell(self)
File "C:\Python31\lib\idlelib\PyShell.py", line 813, in __init__
OutputWindow.__init__(self, flist, None, None)
File "C:\Python31\lib\idlelib\OutputWindow.py", line 16, in __init__
EditorWindow.__init__(self, *args)
File "C:\Python31\lib\idlelib\EditorWindow.py", line 261, in __init__
self.update_recent_files_list()
File "C:\Python31\lib\idlelib\EditorWindow.py", line 779, in
update_recent_files_list
rf_file = open(self.recent_files_path, 'w')
IOError: [Errno 13] Permission denied: 'C:\\Users\\Carey
Metcalfe\\.idlerc\\recent-files.lst'


It seems to not be able to access the recent files list (which does
exist, i checked)

The same issue is here: http://bugs.python.org/issue1743

----------

_______________________________________
Python tracker <report [at] bugs>
<http://bugs.python.org/issue7265>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/list-python-bugs%40lists.gossamer-threads.com


report at bugs

Nov 5, 2009, 5:53 AM

Post #4 of 5 (310 views)
Permalink
[issue7265] IDLE not working [In reply to]

Carey <carey.metcalfe [at] gmail> added the comment:

In the other issue there was a fix that involved unhiding the recent
files list. I unhid the files in the .idlerc folder and everthing works now.

----------

_______________________________________
Python tracker <report [at] bugs>
<http://bugs.python.org/issue7265>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/list-python-bugs%40lists.gossamer-threads.com


report at bugs

Nov 5, 2009, 11:25 AM

Post #5 of 5 (308 views)
Permalink
[issue7265] IDLE not working [In reply to]

Martin v. Löwis <martin [at] v> added the comment:

Closing as resolved, then.

----------
resolution: -> fixed
status: open -> closed

_______________________________________
Python tracker <report [at] bugs>
<http://bugs.python.org/issue7265>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/list-python-bugs%40lists.gossamer-threads.com

Python bugs RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact Gossamer Threads
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.