Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #49220
| Path | csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.freenet.ag!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!194.109.133.87.MISMATCH!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <python-python-list@m.gmane.org> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.007 |
| X-Spam-Evidence | '*H*': 0.99; '*S*': 0.00; 'subject:getting': 0.07; 'versions.': 0.07; 'advice.': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'yeah,': 0.09; '.py': 0.16; '>to': 0.16; 'grep': 0.16; 'message-id:@4ax.com': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'unsafe': 0.16; 'all.': 0.16; 'skip:p 40': 0.19; 'days,': 0.24; 'url:home': 0.24; "i've": 0.25; 'header:X-Complaints-To:1': 0.27; 'installed': 0.27; 'on,': 0.29; "i'm": 0.30; 'python.org': 0.32; 'skip:c 30': 0.32; 'display': 0.35; 'but': 0.35; 'charset:us-ascii': 0.36; 'list': 0.37; 'received:76': 0.38; 'system,': 0.38; 'skip:. 20': 0.38; 'to:addr:python-list': 0.38; 'issue': 0.38; 'that,': 0.38; 'skip:. 10': 0.39; 'to:addr:python.org': 0.39; 'received:org': 0.40; 'even': 0.60; 'dave': 0.60; 'tell': 0.60; 'different': 0.65; 'line,': 0.68; '8.3': 0.84; 'angel': 0.91; '2013': 0.98 |
| X-Injected-Via-Gmane | http://gmane.org/ |
| To | python-list@python.org |
| From | Dennis Lee Bieber <wlfraed@ix.netcom.com> |
| Subject | Re: Inconsistency on getting arguments |
| Date | Tue, 25 Jun 2013 20:58:37 -0400 |
| Organization | IISS Elusive Unicorn |
| References | <5EDCC30CBA986647AAD0B4DA15FAC92D36FCD5FA@NLSRVWP-EXM02.ttg.global> <kqc7f9$2uc$1@ger.gmane.org> <51C9A673.1050006@davea.name> |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset=us-ascii |
| Content-Transfer-Encoding | 7bit |
| X-Gmane-NNTP-Posting-Host | adsl-76-249-27-81.dsl.klmzmi.sbcglobal.net |
| X-Newsreader | Forte Agent 6.00/32.1186 |
| X-No-Archive | YES |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.3870.1372208321.3114.python-list@python.org> (permalink) |
| Lines | 35 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1372208321 news.xs4all.nl 15941 [2001:888:2000:d::a6]:56911 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:49220 |
Show key headers only | View raw
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