[ python-Bugs-1022010 ] wrong options are set to python.exe

SourceForge.net noreply at sourceforge.net
Fri Sep 3 20:46:54 CEST 2004


Bugs item #1022010, was opened at 2004-09-04 03:46
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1022010&group_id=5470

Category: Installation
Group: Python 2.4
Status: Open
Resolution: None
Priority: 5
Submitted By: George Yoshida (quiver)
Assigned to: Nobody/Anonymous (nobody)
Summary: wrong options are set to python.exe

Initial Comment:
When I tried to run a script(just double-clicked it) with 
Python
2.4 on Win 2000, I ran into an error message:

  C:\WINNT\system32\cmd.exe /c test.py
  Unknown option: -n
  usage: C:\Python24\python.exe [option] ... [-c cmd | 
file | -] [arg] ...
  Try `python -h' for more information.
  shell returned 2
  Hit any key to close this window...

The problem seems to be the associations of Python 
related file
types.

In this case, "Python file" (Extension is ".py") is 
associated
with two actions:
-  Edit with IDLE
-  open            (default)

If you look at the "Application used to perform action" 
text box
of 'open', you can see:
  "C:\Python24\python.exe" -n -e "%1"

But neither -n nor -e is a valid option for python.exe and 
it
results in an error message. These options are for IDLE!
Line #1016 to #1020 of mis.py may be relevant to this.

# Tools/msi/mis.py

  # add_data(db, "MIME") XXX
  add_data(db, "Verb",
          [("py", "open", 1, None, r'-n -e "%1"'),
          ("pyw", "open", 1, None, r'-n -e "%1"'),
          ("pyc", "open", 1, None, r'-n -e "%1"'),
          ("pyo", "open", 1, None, r'-n -e "%1"')])


----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=105470&aid=1022010&group_id=5470


More information about the Python-bugs-list mailing list