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 VitP
Recipients VitP, ec2929, loewis, zeromtmu
Date 2008-12-07.04:23:09
SpamBayes Score 1.4140891e-05
Marked as misclassified No
Message-id <1228623793.64.0.0725306351136.issue4049@psf.upfronthosting.co.za>
In-reply-to
Content
This still seems to be happening in python 3.0 as well. Here is the
output from
>1. open cmd.exe
>2. cd \python26
>3. python.exe Lib\idlelib\idle.py

C:\Program Files\Python>python.exe Lib\idlelib\idle.py
Traceback (most recent call last):
  File "Lib\idlelib\idle.py", line 22, in <module>
    idlelib.PyShell.main()
  File "C:\Program Files\Python\lib\idlelib\PyShell.py", line 1385, in main
    shell = flist.open_shell()
  File "C:\Program Files\Python\lib\idlelib\PyShell.py", line 276, in
open_shell

    self.pyshell = PyShell(self)
  File "C:\Program Files\Python\lib\idlelib\PyShell.py", line 800, in
__init__
    OutputWindow.__init__(self, flist, None, None)
  File "C:\Program Files\Python\lib\idlelib\OutputWindow.py", line 16,
in __init
__
    EditorWindow.__init__(self, *args)
  File "C:\Program Files\Python\lib\idlelib\EditorWindow.py", line 243,
in __ini
t__
    self.update_recent_files_list()
  File "C:\Program Files\Python\lib\idlelib\EditorWindow.py", line 761,
in updat
e_recent_files_list
    rf_file = open(self.recent_files_path, 'w')
  File "C:\Program Files\Python\lib\io.py", line 278, in __new__
    return open(*args, **kwargs)
  File "C:\Program Files\Python\lib\io.py", line 222, in open
    closefd)
  File "C:\Program Files\Python\lib\io.py", line 615, in __init__
    _fileio._FileIO.__init__(self, name, mode, closefd)
IOError: [Errno 13] Permission denied:
'C:\\Users\\Isaac\\.idlerc\\recent-files.
lst'
History
Date User Action Args
2008-12-07 04:23:13VitPsetrecipients: + VitP, loewis, zeromtmu, ec2929
2008-12-07 04:23:13VitPsetmessageid: <1228623793.64.0.0725306351136.issue4049@psf.upfronthosting.co.za>
2008-12-07 04:23:10VitPlinkissue4049 messages
2008-12-07 04:23:09VitPcreate