[issue15780] IDLE (windows) with PYTHONPATH and multiple python versions

2014-06-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: Thanks for the correction. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15780] IDLE (windows) with PYTHONPATH and multiple python versions

2014-06-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- resolution: -> works for me stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Pyth

[issue15780] IDLE (windows) with PYTHONPATH and multiple python versions

2014-06-08 Thread eryksun
eryksun added the comment: `idle.pyw -E` passes an invalid argument, and pythonw.exe doesn't inherit the console to print the usage text to stderr. The -E option needs to be passed to the interpreter: C:\Python34>pythonw.exe -E Lib/idlelib/idle.pyw Or run idlelib as a script: pyw -3

[issue15780] IDLE (windows) with PYTHONPATH and multiple python versions

2014-06-08 Thread Terry J. Reedy
Terry J. Reedy added the comment: There already is an idlelib/idle.bat that starts the corresponding python with set CURRDIR=%~dp0 start "IDLE" "%CURRDIR%..\..\pythonw.exe" "%CURRDIR%idle.pyw" %1 %2 %3 %4 %5 %6 %7 %8 %9 Arguments added to the .bat command are passed on. So the enhancement requ

[issue15780] IDLE (windows) with PYTHONPATH and multiple python versions

2014-06-08 Thread Mark Lawrence
Mark Lawrence added the comment: Something on Windows configuration here https://docs.python.org/3/using/windows.html#excursus-setting-environment-variables -- nosy: +BreamoreBoy ___ Python tracker ___

[issue15780] IDLE (windows) with PYTHONPATH and multiple python versions

2012-08-31 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: -Python 2.6, Python 2.7, Python 3.1, Python 3.2, Python 3.3 ___ Python tracker ___ ___ Pytho

[issue15780] IDLE (windows) with PYTHONPATH and multiple python versions

2012-08-26 Thread Roger Serwy
Roger Serwy added the comment: Look in the registry at "Computer\HKEY_CLASSES_ROOT\Python.File\shell\" and then inspect the launch commands under "open\command" and "Edit with IDLE\command". -- nosy: +serwy ___ Python tracker

[issue15780] IDLE (windows) with PYTHONPATH and multiple python versions

2012-08-24 Thread R. David Murray
R. David Murray added the comment: I'm guessing that 'batch file' version of this request is answered by the new 'py' launcher command in Python3, which can also be used with other versions of Python. The obscurity of configuring things on Windows isn't directly a Python problem, but perhaps

[issue15780] IDLE (windows) with PYTHONPATH and multiple python versions

2012-08-24 Thread James Hutchison
New submission from James Hutchison: One issue I've encountered is someone else's software setting PYTHONPATH to their install directory of python. We have some old software that installs and uses python 2.3 scripts and unfortunately this prevents the IDLE shortcuts for newer versions of pytho