Running Python Code in Windows Batch File Trick

I found this really neat bit of .bat file magic that will let you save your python script code in a .bat file and run it in windows just like any other script. The nice thing about this is that you don’t have to create a separate “launch.bat” file with one “start python script.py” line in it.

This makes running python scripts in Windows more like it is on a Linux/Mac where you can easily add a #!/usr/bin/env python line to the script and run it directly.

Here’s the bit of tricky batch file magic that does it:

@setlocal enabledelayedexpansion && python -x "%~f0" %* & exit /b !ERRORLEVEL!
#start python code here
print "hello world"

The way it works is that the first line of the file does two different things.

  1. starts python interpreter passing the name of the file in, and the -x option will tell it to skip the first line (containing .bat file code)
  2. When python finishes the script exits.

This nifty trick makes it much nicer for writing admin scripts with python on Windows.

Update: fixed to properly pass command line arguments (%* argument passes through the command line arguments for the bat file to python)

Bookmark and Share

Technorati Tags: , , , , ,

Related posts:

  1. Automatically Respond to Twitter Messages
  2. Scrape Technorati Search Results in Python
  3. Scrape Advertisements from Google Search Results with Python
  4. Sending Email from Python using Gmail
  5. Python Web Crawler Script
Stumble it!


RSS feed | Trackback URI

770 Comments »

Comment by halotis
2009-08-21 17:06:03

Running Python Code in Windows Batch File Trick – I found this really neat bit of .bat file magic that will let you.. http://bit.ly/4QopL

This comment was originally posted on Twitter

 
Comment by bayleo
2009-08-21 21:39:20

Sweet… now how do I stealth deploy the python interpreter to every PC in my office so that I never have to write another VBscript?

This comment was originally posted on Reddit

 
Comment by BridgeBum
2009-08-21 23:03:57

"Security" patch. :-)

This comment was originally posted on Reddit

 
Comment by nix64
2009-08-22 00:13:01

lol windows. They have transparent glassy foggy graphics-accelerated window borders, but they still use the same tired conventions from the 90’s.

This comment was originally posted on Reddit

 
Comment by no9
2009-08-22 03:03:42

The irony is that (PowerShell)[http://en.wikipedia.org/wiki/Powershell] –Windows’ modern alternative to batch files– feels so Unix-y that I refuse to use it.

This comment was originally posted on Reddit

 
Comment by Jim
2009-08-22 03:13:19

Nice trick. How would you recommend passing in invocation arguments from the command line? I’d like to be able to use sys.argv from within my .bat embedded python program.

thanks

 
Comment by pemboa
2009-08-22 04:47:19

I thought Windows environments had easy installation to client machines?

This comment was originally posted on Reddit

 
Comment by jdbkr
2009-08-22 05:23:06

Running python in a windows .bat script: http://bit.ly/fd7Ns

This comment was originally posted on Twitter

 
Comment by hylje
2009-08-22 07:53:40

Technically, yes. Politically, no.

This comment was originally posted on Reddit

 
Comment by gdm9000
2009-08-22 08:47:51

How is this useful? On my machines, I simply associate .py extensions to Python. Done. Runs when I doubleclick it now. On others’ machines that don’t have Python, I compile my script using Py2Exe. Runs when they doubleclick it now.

This comment was originally posted on Reddit

 
Comment by Matt Warren
2009-08-22 08:55:11

I updated the batch file line to pass through the command line arguments.

Example Usage:

$ echo.bat test
test

Here’s what echo.bat looks like:

@setlocal enabledelayedexpansion && python -x "%~f0" %* & exit /b !ERRORLEVEL!
#start python code here
import sys
print sys.argv[1]
 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment variable: c:> echo import sys; print ‘ ‘.join(sys.argv[1:]) >test.py c:> SET PATHEXT=%PATHEXT%;.py c:> test hello world hello world

This comment was originally posted on Reddit

 
Comment by Brian
2009-08-22 09:32:36

Or alternatively … just register .py files as runnable? You’d have to do this for every python file you want to launch, it prevents you from using the same file for both script and module, and it’s needlessly complex when you can accomplish the same goal for every python file simply by registering the .py extension (already done by the installer) and extending the PATHEXT environment varia