Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #49220
| From | Dennis Lee Bieber <wlfraed@ix.netcom.com> |
|---|---|
| Subject | Re: Inconsistency on getting arguments |
| Date | 2013-06-25 20:58 -0400 |
| Organization | IISS Elusive Unicorn |
| References | <5EDCC30CBA986647AAD0B4DA15FAC92D36FCD5FA@NLSRVWP-EXM02.ttg.global> <kqc7f9$2uc$1@ger.gmane.org> <51C9A673.1050006@davea.name> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.3870.1372208321.3114.python-list@python.org> (permalink) |
On Tue, 25 Jun 2013 10:17:23 -0400, Dave Angel <davea@davea.name> declaimed
the following:
>I think if you type ftype it'll list them all. So if you grep that, you
>should be able to find the line for Python.File And yeah, you can
>probably tell ftype to just display that line, but I don't have a system
>to try it on, or even to use /? on, so I'm not going to issue unsafe advice.
>
C:\Users\Wulfraed\Documents>assoc .py
.py=Python.File
C:\Users\Wulfraed\Documents>ftype python.file
python.file="C:\PYTHON~2\Python27\python.exe" "%1" %*
I've always installed the ActiveState versions. python.org may use
different associations.
Might also want to check .pyc and .pyo
C:\Users\Wulfraed\Documents>assoc .pyc
.pyc=Python.CompiledFile
C:\Users\Wulfraed\Documents>ftype python.compiledfile
python.compiledfile="C:\PYTHON~2\Python27\python.exe" "%1" %*
C:\Users\Wulfraed\Documents>assoc .pyo
.pyo=Python.CompiledFile
{odd that even these days, on a Win7-64 system, directories were still
compressed to 8.3 naming}
--
Wulfraed Dennis Lee Bieber AF6VN
wlfraed@ix.netcom.com HTTP://wlfraed.home.netcom.com/
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: Inconsistency on getting arguments Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2013-06-25 20:58 -0400
csiph-web