Path: csiph.com!x330-a1.tempe.blueboxinc.net!usenet.pasdenom.info!selfless.tophat.at!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!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.000 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'sys': 0.05; 'subject:Python': 0.06; 'subject:version': 0.07; 'python': 0.08; '>>>>': 0.09; 'from:addr:ethan': 0.09; 'from:addr:stoneleaf.us': 0.09; 'from:name:ethan furman': 0.09; 'message-id:@stoneleaf.us': 0.09; 'received:gator410.hostgator.com': 0.09; 'to:name:python list': 0.09; '~ethan~': 0.09; '>>>': 0.12; 'win32': 0.12; 'wrote:': 0.14; '"copyright",': 0.16; '"credits"': 0.16; '"license"': 0.16; 'different,': 0.16; 'exe': 0.16; 'hex': 0.16; 'python.exe': 0.16; 'running:': 0.16; 'subject:Windows': 0.20; 'header:In-Reply-To:1': 0.21; 'vs.': 0.23; 'versions': 0.23; 'up.': 0.26; 'tried': 0.27; "i'm": 0.27; 'installed': 0.28; 'subject:?': 0.29; 'import': 0.29; 'matches': 0.29; 'bit': 0.30; '(just': 0.30; 'exists,': 0.30; 'anyone': 0.32; 'to:addr:python- list': 0.33; 'header:User-Agent:1': 0.35; 'else': 0.35; 'folder': 0.36; 'charset:us-ascii': 0.36; 'running': 0.37; 'think': 0.38; 'subject:: ': 0.38; 'to:addr:python.org': 0.39; 'report': 0.40; 'current': 0.40; 'more': 0.60; 'within': 0.60; 'our': 0.63; 'received:websitewelcome.com': 0.67; '03:09': 0.84; 'different.': 0.84; 'received:gateway14.websitewelcome.com': 0.84; 'wow': 0.84 Date: Sat, 18 Jun 2011 07:24:53 -0700 From: Ethan Furman User-Agent: Thunderbird 2.0.0.24 (Windows/20100228) MIME-Version: 1.0 To: python list Subject: Re: Python 2.7.2 for Windows reports version as 2.7.0? References: <1308358550.17680.1464439673@webmail.messagingengine.com> <1308368168.21764.1464464325@webmail.messagingengine.com> In-Reply-To: <1308368168.21764.1464464325@webmail.messagingengine.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - gator410.hostgator.com X-AntiAbuse: Original Domain - python.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - stoneleaf.us X-BWhitelist: no X-Source: X-Source-Args: X-Source-Dir: X-Source-Sender: c-67-170-168-84.hsd1.or.comcast.net ([192.168.74.5]) [67.170.168.84]:1454 X-Source-Auth: ethan+stoneleaf.us X-Email-Count: 1 X-Source-Cap: dG9idWs7dG9idWs7Z2F0b3I0MTAuaG9zdGdhdG9yLmNvbQ== X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.12 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: 50 NNTP-Posting-Host: 82.94.164.166 X-Trace: 1308407165 news.xs4all.nl 49177 [::ffff:82.94.164.166]:50953 X-Complaints-To: abuse@xs4all.nl Xref: x330-a1.tempe.blueboxinc.net comp.lang.python:7909 [re-posting to list] python@bdurham.com wrote: > Within the folder where the python.exe exists, I have tried the > following, all of which report Python 2.7.0 vs. 2.7.2 > Confirming I'm running what I think I'm running: > >>>> import sys >>>> sys.hexversion > 34013424 >>>> sys.executable > 'C:\\Python27\\python.exe' This is what I get (just installed 2.7.2): Python 2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import sys >>> sys.hexversion 34013936 >>> sys.version '2.7.2 (default, Jun 12 2011, 15:08:59) [MSC v.1500 32 bit (Intel)]' >>> sys.executable 'C:\\Python27\\python.exe' So our hex versions are different. > > And confirming the exe files in my Python27 folder: > > Directory of C:\Python27 > > 06/12/2011 03:09 PM 26,624 python.exe > 06/12/2011 03:06 PM 27,136 pythonw.exe Directory of C:\Python27 06/12/2011 03:09 PM 26,624 python.exe 06/12/2011 03:06 PM 27,136 pythonw.exe Wow -- this part matches up. > Anyone else having the same experience? Not I. Given that our hexversion numbers are different, I think you don't have the current 2.7.2. ~Ethan~