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 warkid
Recipients
Date 2004-09-16.08:07:53
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
In "FolderOptions/File types" for "py" files in 
action "open" "Application used to perform action" 
reads: "C:\Python24\python.exe" "%1"

This results in such behaviour:

-----------
D:\temp>copy con test.py
import sys
print sys.version
print sys.argv[1]
^Z
        1 file(s) copied.

D:\temp>python.exe test.py hello
2.4a3 (#56, Sep  2 2004, 20:50:21) [MSC v.1310 32 bit 
(Intel)]
hello

D:\temp>test.py hello
2.4a3 (#56, Sep  2 2004, 20:50:21) [MSC v.1310 32 bit 
(Intel)]
Traceback (most recent call last):
  File "D:\temp\test.py", line 3, in ?
    print sys.argv[1]
IndexError: list index out of range
-----------

Python2.3 had this string for  "Application 
used...": "C:\Python24\python.exe" "%1" %*

History
Date User Action Args
2007-08-23 14:26:17adminlinkissue1029047 messages
2007-08-23 14:26:17admincreate