Path: csiph.com!usenet.pasdenom.info!gegeweb.org!de-l.enfer-du-nord.net!feeder2.enfer-du-nord.net!newsfeed.eweka.nl!eweka.nl!feeder3.eweka.nl!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.015 X-Spam-Evidence: '*H*': 0.97; '*S*': 0.00; 'mrab': 0.05; 'output': 0.05; 'subject:Python': 0.06; 'binary': 0.07; 'skip:/ 10': 0.09; 'suggestions.': 0.09; 'python': 0.11; 'question.': 0.14; 'reliability.': 0.16; ':-)': 0.16; 'wrote:': 0.18; 'bit': 0.19; 'import': 0.22; 'header:User-Agent:1': 0.23; 'script': 0.25; 'header:In-Reply-To:1': 0.27; 'chris': 0.29; 'am,': 0.29; 'skip:( 20': 0.30; 'comments': 0.31; 'received:10.0.0': 0.31; 'file': 0.32; 'everyone': 0.33; 'fri,': 0.33; 'skip:# 10': 0.33; 'test': 0.35; 'received:google.com': 0.35; 'version': 0.36; 'doubt': 0.36; 'received:10.0': 0.36; 'received:10': 0.37; 'thank': 0.38; 'version,': 0.38; 'to:addr:python-list': 0.38; 'pm,': 0.38; 'to:addr:python.org': 0.39; 'future': 0.60; 'such': 0.63; 'happen': 0.63; 'more': 0.64; '26,': 0.68; 'jul': 0.74; '2013,': 0.91; '2013': 0.98 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=E4sJziTbE1CBAMu4A6QfHugpTjQ5GpFWFR1L0j6RudY=; b=SdymhwHqx3prrUz4lk1ezQK7KCWvwnrpRMNcHdRZ/3c9xFjsbSacmaSmAMQU3wOdjq vZ+nyk8UT61oiHb0yGmeyGKEkE4Eyqg7vFQ2h8uKOFS0ueupN7szxVx8XUORnDeDQ2oU Z/7AZn9tZXApzjFc7Keez623A4PhdfhfsmOM+X6WN7JwuKKp1y/wjHR1e+dd6xWs0G9m f7W9XIcXkzzJeJVrDGesYuTn5JD0KN4fdHsmq8/mJHAuxkm9jbCHZGDym4DCUKyjl5aN BR1FBMfX2nbgpeQ2SyATEbN24kcY1WRDKcpn50Gt9TgXhP+iV6Fe62HyKxsgaA0MOV2R riQg== X-Received: by 10.42.68.145 with SMTP id x17mr20984701ici.110.1374881592790; Fri, 26 Jul 2013 16:33:12 -0700 (PDT) Date: Fri, 26 Jul 2013 19:33:10 -0400 From: Devyn Collier Johnson User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130623 Thunderbird/17.0.7 MIME-Version: 1.0 To: Python Mailing List Subject: Re: Python Script Hashplings References: <51F12B41.3050004@Gmail.com> <51F12E31.1070502@mrabarnett.plus.com> <51F2517D.2070009@Gmail.com> <51F27F72.3020807@mrabarnett.plus.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 33 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1374881596 news.xs4all.nl 15945 [2001:888:2000:d::a6]:42313 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:51324 On 07/26/2013 10:14 AM, Chris Angelico wrote: > On Fri, Jul 26, 2013 at 2:53 PM, MRAB wrote: >> If you want to test what would happen if that version wasn't installed, >> set the shebang line to a future version, such as Python 3.4. I doubt >> you have that installed! :-) > Be careful, some people DO have a python3.4 binary :) Go for 3.5 for a > bit more reliability. > > rosuav@sikorsky:~$ python3.4 > 3.4.0a0 (default:da7d97ca1ef6, Jul 13 2013, 14:05:08) > [GCC 4.7.2] > > ChrisA Thank you everyone for your comments and suggestions. I made a script to test the question. see for yourself: SCRIPT: #!/usr/bin/env python3.5 import sys; print(sys.version) OUTPUT IN TERMINAL: collier@Nacho-Laptop:~$ ./test.py /usr/bin/env: python3.5: No such file or directory Mahalo, DCJ