[issue1743] IDLE fails to launch

2010-09-23 Thread Stephan Bellegy

Stephan Bellegy stephan.bell...@gmail.com added the comment:

Reproduced today with Python 2.6.6 and 2.7 on Win7 32 bits.

Deleting .idlerc directory made it.

Doesn't look like fixed guys ! ;-)

--
nosy: +Stephan.Bellegy
versions: +Python 2.6 -Python 2.5, Python 3.1

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1743
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1743] IDLE fails to launch

2010-09-23 Thread Martin v . Löwis

Martin v. Löwis mar...@v.loewis.de added the comment:

Please submit this as a new bug issue, preferably with precise instructions on 
how to reproduce it. Can you provide some clue how the file became hidden in 
the first place?

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1743
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1743] IDLE fails to launch

2010-09-23 Thread Stephan Bellegy

Stephan Bellegy stephan.bell...@gmail.com added the comment:

New bug reported here
http://bugs.python.org/issue9925

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1743
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1743] IDLE fails to launch

2008-02-13 Thread Kurt B. Kaiser

Kurt B. Kaiser added the comment:

backported 2.5.2c1

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1743
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1743] IDLE fails to launch

2008-01-23 Thread Kurt B. Kaiser

Kurt B. Kaiser added the comment:

Thanks for the fix.  r60225.

--
resolution:  - fixed
status: open - closed

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1743
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1743] IDLE fails to launch

2008-01-22 Thread Martin v. Löwis

Martin v. Löwis added the comment:

I've studied the problem with Process Monitor. If a file is hidden,
open(f, w) fails, whereas os.open(f, os.W_OK|os.O_CREAT) succeeds.

In the succeeding call, process monitor reports

Desired Access: Generic Read/Write
Disposition:OpenIf
Options:Synchronous IO Non-Alert, Non-Directory File
Attributes: N
ShareMode:  Read, Write
AllocationSize: 0
OpenResult: Opened

In the failing call, it reports

Desired Access: Generic Write, Read Attributes
Disposition:OverwriteIf
Options:Synchronous IO Non-Alert, Non-Directory File
Attributes: N
ShareMode:  Read, Write
AllocationSize: 0

I then tried os.open(f, os.W_OK|os.CREAT|os.O_TRUNC) which also fails,
giving

Desired Access: Generic Read/Write
Disposition:OverwriteIf
Options:Synchronous IO Non-Alert, Non-Directory File
Attributes: N
ShareMode:  Read, Write
AllocationSize: 0

So it fails for FILE_OVERWRITE_IF, but succeeds for FILE_OPEN_IF. These 
map back to CREATE_ALWAYS and OPEN_ALWAYS - apparently, you can't 
truncate a hidden file on Vista.

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1743
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1743] IDLE fails to launch

2008-01-22 Thread Martin v. Löwis

Martin v. Löwis added the comment:

As a follow-up, it appears that Windows didn't allow truncating hidden
or system files since Windows 2000. If you change the flags on .idlerc
to hidden in (say) W2k3, IDLE will also fail to start - so it's not a
Vista issue.

The question is why the folder sudenly became hidden - Python has no
API to make it so.

In any case, the proper solution is to delete the file rather than
overwriting it, perhaps like so

def save_overwrite_open(fname):
  try:
return open(fname,w)
  except IOError:
os.unlink(fname)
return open(fname,w)

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1743
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1743] IDLE fails to launch

2008-01-14 Thread Rich

Rich added the comment:

Aha! There is no difference in Permissions, but the working recent-
files file isn't hidden but the one generated originally by IDLE was.
If I make the one I made hidden then IDLE stops working again. 
The .idlerc folder has been hidden all along though - that doesn't 
affect it.
If anyone's changing the way IDLE writes these files, would it be worth 
me saying that aesthetically, I'm not a fan of it putting them in a 
hidden folder in my top level User folder. What about putting them down 
inside Users/AppData like other applications do? Just a thought.

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1743
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1743] IDLE fails to launch

2008-01-14 Thread Martin v. Löwis

Martin v. Löwis added the comment:

We should clearly separate issues. Changing the organization of files is
entirely independent from fixing the bug reported here, and the issues
must not at all be mixed.

I'm puzzled as to why making the file hidden should have any effect, but
at least that's something that we can try to reproduce.

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1743
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1743] IDLE fails to launch

2008-01-13 Thread Kurt B. Kaiser

Kurt B. Kaiser added the comment:

1. Could you look at the properties of the .idlerc\recent-files.lst that you 
saved and compare them to the new file which worked?  In particular, what 
about access permissions?

2. I agree that IDLE should have a better error response if opening a user 
config file fails.

--
priority: low - normal

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1743
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1743] IDLE fails to launch

2008-01-11 Thread Rich

Rich added the comment:

I can't get it to do it again.  Unless someone else is still 
experiencing the problem, perhaps it was fixed (deliberately or 
otherwise) by this month's Vista hotfixes that came down automatically 
a couple of days ago.
Thanks for your help everyone.

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1743
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1743] IDLE fails to launch

2008-01-08 Thread Rich

Rich added the comment:

I've been away for a couple of days, but can replicate everything 
Joakim has reported in my abscence. Deleting/renaming recent-files.lst 
allows me to launch IDLE (from cmd or Start Menu).
Oddly though, if I close IDLE, copy/paste the contents of the old 
recent-files into the new one, and then restart IDLE, it still works.
Another thing I noticed, after launching IDLE from the Command Prompt, 
is that I get this error (while IDLE is still running and I haven't 
done anything with it yet):
Traceback (most recent call last): File [...]\idlelib\run.py, line 
82, in main exit()
File [...]\idlelib\run.py, line 208, in exit del sys.exitfunc
AttributeError: exitfunc

Is that normal?

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1743
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1743] IDLE fails to launch

2008-01-08 Thread Martin v. Löwis

Martin v. Löwis added the comment:

Can anybody provide a complete, reproducible procedure for that bug
(rather than reproducible procedures to work around it)? Such a
procedure might have to start with installing Python.

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1743
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1743] IDLE fails to launch

2008-01-07 Thread Joakim

Joakim added the comment:

I have the exact same problem also running 32-bit vista. 
Idle worked the first time I started it but after that it doesn't start.
I did run the command and got this error.

C:\Users\JoakimC:\Python25\python.exe C:\Python25\Lib\idle.py
C:\Python25\python.exe: can't open file 'C:\Python25\Lib\idle.py': 
[Errno 2] No such file or directory

I also not able to start the interpreter from cmd using the python 
command. I've looked around a bit and read something about adding to 
PATH. Haven't tried that because the guide wasn't written for Vista.

--
nosy: +Piffen

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1743
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1743] IDLE fails to launch

2008-01-07 Thread Christian Heimes

Christian Heimes added the comment:

Can you access the file C:\\Users\\Joakim\\.idlerc\\recent-files.lst
with the explorer? Do the directory and the file exist?

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1743
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1743] IDLE fails to launch

2008-01-07 Thread Joakim

Joakim added the comment:

I can access the file. I renamed the file and tried the command again.
Then I started IDLE and got a window. A new recent-files.lst was 
created. So I guess I solved the problem temporarily.

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1743
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1743] IDLE fails to launch

2008-01-07 Thread Christian Heimes

Christian Heimes added the comment:

It smells like a Vista issue.

But IDLE shouldn't crash w/o a notice if the recent list can't be opened.

--
assignee:  - kbk
nosy: +kbk
priority:  - low

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1743
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1743] IDLE fails to launch

2008-01-06 Thread Rich

New submission from Rich:

Launching IDLE from the start menu has no effect, no windows open.
Command line Python still works. Reinstalling Python does not fix the 
problem.
I haven't changed my system configuration since everything was working.
Any ideas for things to check to fix this on my system would be much 
appreciated!

--
components: IDLE
messages: 59364
nosy: richjtd
severity: normal
status: open
title: IDLE fails to launch
versions: Python 2.5

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1743
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1743] IDLE fails to launch

2008-01-06 Thread Christian Heimes

Christian Heimes added the comment:

What's your OS and how did you install Python on your machine?

--
nosy: +tiran

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1743
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1743] IDLE fails to launch

2008-01-06 Thread Rich

Rich added the comment:

I'm on 32-bit Windows Vista, and I installed with the Python 2.5 msi.

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1743
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1743] IDLE fails to launch

2008-01-06 Thread Martin v. Löwis

Martin v. Löwis added the comment:

Please open IDLE from the command line:
1. start cmd.exe
2. run path to python.exe path to python/Lib/idle/idle.py

That should give you an error, please report it.

--
nosy: +loewis

__
Tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1743
__
___
Python-bugs-list mailing list 
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com