Re: Python Imaging Library 1.x - 64bit setup file for Python 2.7.2.

2014-09-25 Thread Mark Lawrence
On 25/09/2014 09:07, Pinter, Karina /C wrote: Dear Team, I am working as a software analyst at ExxonMobil. I received a software request for Python Imaging Library 1.x and the user needs a 64bit setup file for Python 2.7.2. Can I download it somewhere? Thanks in advance. */Best Regards

Re: Python Imaging Library 1.x - 64bit setup file for Python 2.7.2.

2014-09-25 Thread Vincent Vande Vyvre
Le 25/09/2014 10:07, Pinter, Karina /C a écrit : Dear Team, I am working as a software analyst at ExxonMobil. I received a software request for Python Imaging Library 1.x and the user needs a 64bit setup file for Python 2.7.2. Can I download it somewhere? Thanks in advance. */Best Regards

Python Imaging Library 1.x - 64bit setup file for Python 2.7.2.

2014-09-25 Thread Pinter, Karina /C
Dear Team, I am working as a software analyst at ExxonMobil. I received a software request for Python Imaging Library 1.x and the user needs a 64bit setup file for Python 2.7.2. Can I download it somewhere? Thanks in advance. Best Regards, Karina Pinter ExxonMobil BSC Hungary Kft. Software

Re: help with for loop----python 2.7.2

2014-03-23 Thread Ian Kelly
On Mar 23, 2014 3:56 PM, "tad na" wrote: > > This is the error I get with > 1. print data[x].pubDate.text > AttributeError: 'NoneType' object has no attribute 'text' > 2. print data[x].pubDate > It results in "None" So the problem is that it's not even finding the pubDate tag in the first

Re: help with for loop----python 2.7.2

2014-03-23 Thread Ben Finney
teddyb...@gmail.com writes: > I am trying to get all the element data from the rss below. […] > from bs4 import BeautifulSoup > > soup = BeautifulSoup(urlopen('http://bl.ocks.org/mbostock.rss')) RSS is not HTML; so BeautifulSoup is not a good tool to use for parsing RSS. Instead, you will do

Re: help with for loop----python 2.7.2

2014-03-23 Thread tad na
On Sunday, March 23, 2014 12:49:11 PM UTC-5, Ian wrote: > On Mar 23, 2014 11:31 AM, "tad na" wrote: > > OK . second problem :) > > I can print the date.  not sure how to do this one.. > Why not? What happens when you try? > > try: > >     from urllib2 import urlopen > > except ImportError: > >

Re: help with for loop----python 2.7.2

2014-03-23 Thread Mark Lawrence
On 23/03/2014 17:30, tad na wrote: On Sunday, March 23, 2014 12:29:40 PM UTC-5, tad na wrote: On Saturday, March 22, 2014 6:21:30 AM UTC-5, tad na wrote: I am trying to get all the element data from the rss below. The only thing I am pulling is the first element. I don't understand

Re: help with for loop----python 2.7.2

2014-03-23 Thread tad na
On Sunday, March 23, 2014 12:40:04 PM UTC-5, Mark Lawrence wrote: > On 23/03/2014 17:30, tad na wrote: > Would you please use the mailing list > https://mail.python.org/mailman/listinfo/python-list or read and action > this https://wiki.python.org/moin/GoogleGroupsPython to prevent us > seeing d

Re: help with for loop----python 2.7.2

2014-03-23 Thread Ian Kelly
On Mar 23, 2014 11:31 AM, "tad na" wrote: > OK . second problem :) > I can print the date. not sure how to do this one.. Why not? What happens when you try? > try: > from urllib2 import urlopen > except ImportError: > from urllib.request import urlopen > import urllib2 > from bs4 import

Re: help with for loop----python 2.7.2

2014-03-23 Thread Mark Lawrence
On 23/03/2014 17:30, tad na wrote: Would you please use the mailing list https://mail.python.org/mailman/listinfo/python-list or read and action this https://wiki.python.org/moin/GoogleGroupsPython to prevent us seeing double line spacing and single line paragraphs, thanks. -- My fellow Pyth

Re: help with for loop----python 2.7.2

2014-03-23 Thread tad na
On Sunday, March 23, 2014 12:29:40 PM UTC-5, tad na wrote: > On Saturday, March 22, 2014 6:21:30 AM UTC-5, tad na wrote: > > > I am trying to get all the element data from the rss below. > > > > > > The only thing I am pulling is the first element. > > > > > I don't understand why the for l

Re: help with for loop----python 2.7.2

2014-03-23 Thread tad na
On Saturday, March 22, 2014 6:21:30 AM UTC-5, tad na wrote: > I am trying to get all the element data from the rss below. > > The only thing I am pulling is the first element. > I don't understand why the for loop does not go through the entire rss. > Here is my code > try: > from urlli

Re: help with for loop----python 2.7.2

2014-03-22 Thread Ian Kelly
On Sat, Mar 22, 2014 at 5:21 AM, wrote: > I am trying to get all the element data from the rss below. > The only thing I am pulling is the first element. > I don't understand why the for loop does not go through the entire rss. > Here is my code [SNIP] > for item in soup.find_all('item'): >

help with for loop----python 2.7.2

2014-03-22 Thread teddybubu
I am trying to get all the element data from the rss below. The only thing I am pulling is the first element. I don't understand why the for loop does not go through the entire rss. Here is my code try: from urllib2 import urlopen except ImportError: from urllib.request import urlopen

Trouble getting Python 2.7.2 to recognize Tk in Scientific Linux Release 6

2012-01-04 Thread Jeffrey Wise
Hi, I've been a python user for a long time - on Windows, but now I'm working on a Linux system. I'm having trouble getting python to include Tk in it's build. My Tcl/Tk is in a non-standard location (I don't want to interfere with the Python 2.6 installation - that does include Tk until I have

Re: Upgraded Ubuntu -> 11.10, Python -> 2.7.2. Now psyco doesn't work?

2011-12-20 Thread John Ladasky
On Dec 20, 4:08 pm, Jerry Hill wrote: > From the psyco homepage (http://psyco.sourceforge.net/) "Python 2.7 > is unsupported so far. Anyone interested in porting Psyco to it is > welcome. I started the work in a branch but it needs finishing." > That's the most recent news item on the home page,

Re: Upgraded Ubuntu -> 11.10, Python -> 2.7.2. Now psyco doesn't work?

2011-12-20 Thread Jerry Hill
On Tue, Dec 20, 2011 at 5:43 PM, John Ladasky wrote: > I was running Ubuntu Linux 10.10, on which Python 2.6.6 was the > standard distribution.  I succeeded in doing an "alternate install" of > Python 2.7.2, over Ubuntu 10.10.  But I use so many packages in my > code.  De

Upgraded Ubuntu -> 11.10, Python -> 2.7.2. Now psyco doesn't work?

2011-12-20 Thread John Ladasky
that only bugs which affect language security will be fixed in older revisions, I was encouraged to try my code on Python 2.7.2. I was running Ubuntu Linux 10.10, on which Python 2.6.6 was the standard distribution. I succeeded in doing an "alternate install" of Python 2.7.2, over Ubuntu 10

MySQLdb for Python 2.7.2 for Windows 32 bit?

2011-12-15 Thread John Nagle
Is there a MySQLdb binary for Python 2.7.2 for Windows 32 bit? There's a 2.7 binary at "http://www.lfd.uci.edu/~gohlke/pythonlibs/"; but not a 2.7.2 binary. (Also, using modules from untrusted sites is riskier than it used to be. GPL code for major packages with added spy

Re: How to install Python on Debian GNU/Linux (Python-2.7.2.tar.bz2)

2011-12-14 Thread Anssi Saari
ian system just to try out some of the new Tk stuff. > Debian's backports should provide a well integrated Python 2.7 > package. But it doesn't. Python 2.7.2 is in Wheezy, which is the current testing version of Debian. Looks like it has about 700 release critical bugs, so it'

Re: How to install Python on Debian GNU/Linux (Python-2.7.2.tar.bz2)

2011-12-05 Thread Christian Heimes
Am 05.12.2011 17:28, schrieb Chris Angelico: > On Tue, Dec 6, 2011 at 3:23 AM, Steven D'Aprano > wrote: >> Generally speaking, unless you are an expert, you should not use make >> install when installing Python from source, because it will replace the >> system Python with the newly installed one.

Re: How to install Python on Debian GNU/Linux (Python-2.7.2.tar.bz2)

2011-12-05 Thread Christian Heimes
Am 05.12.2011 17:23, schrieb Steven D'Aprano: > The trickiest part for me is ensuring that tkinter works correctly. After > installing Python from source about a dozen times now, I still don't know > why sometimes it works and sometimes it doesn't. sudo apt-get build-dep python2.7 Done ;) Howe

Re: How to install Python on Debian GNU/Linux (Python-2.7.2.tar.bz2)

2011-12-05 Thread Chris Angelico
On Tue, Dec 6, 2011 at 3:23 AM, Steven D'Aprano wrote: > Generally speaking, unless you are an expert, you should not use make > install when installing Python from source, because it will replace the > system Python with the newly installed one. > > Instead use `sudo make altinstall` Mea culpa,

Re: How to install Python on Debian GNU/Linux (Python-2.7.2.tar.bz2)

2011-12-05 Thread Steven D'Aprano
gt;>> >>> ChrisA >> >> >> Yes, I have Python installed, but it's an old version. So I want to >> upgrade to "Python-2.7.2.tar.bz2". > > Ah gotcha. I believe you can 'sudo apt-get install python2.7' - at > least, you can on the

Re: How to install Python on Debian GNU/Linux (Python-2.7.2.tar.bz2)

2011-12-05 Thread Chris Angelico
#x27;s an old version. So I want to > upgrade to "Python-2.7.2.tar.bz2". Ah gotcha. I believe you can 'sudo apt-get install python2.7' - at least, you can on the Ubuntu system next to me. Not sure though; I build my Python from source straight from Mercurial. What you have

Re: How to install Python on Debian GNU/Linux (Python-2.7.2.tar.bz2)

2011-12-05 Thread patrickwayodi
> You should actually already have Python installed. Try typing 'python' > at a terminal and see if it invokes the interactive interpreter. > > ChrisA Yes, I have Python installed, but it's an old version. So I want to upgrade to "Python-2.7.2.tar.bz2"

Re: How to install Python on Debian GNU/Linux (Python-2.7.2.tar.bz2)

2011-12-05 Thread Chris Angelico
On Tue, Dec 6, 2011 at 1:53 AM, patrickwayodi wrote: > Hi, > How can I install Python on Debian GNU/Linux? I downloaded the file > "Python-2.7.2.tar.bz2" but I don't know how to install it. You should actually already have Python installed. Try typing 'python' a

How to install Python on Debian GNU/Linux (Python-2.7.2.tar.bz2)

2011-12-05 Thread patrickwayodi
Hi, How can I install Python on Debian GNU/Linux? I downloaded the file "Python-2.7.2.tar.bz2" but I don't know how to install it. Patrick. -- http://mail.python.org/mailman/listinfo/python-list

Re: Python 2.7.2 on XP

2011-11-23 Thread John Gordon
In "Alemu Tadesse" writes: > I am saving it with .py extention It would really help us answer your question if you identified which editor you're using. IDLE? PyScripter? Eclipse? PyCharm? -- John Gordon A is for Amy, who fell down the stairs gor...@panix.com

RE: Python 2.7.2 on XP

2011-11-23 Thread Alemu Tadesse
I am saving it with .py extention -Original Message- From: python-list-bounces+atadesse=sunedison@python.org [mailto:python-list-bounces+atadesse=sunedison@python.org] On Behalf Of MRAB Sent: Wednesday, November 23, 2011 12:01 PM To: python-list@python.org Subject: Re: Python

Re: Python 2.7.2 on XP

2011-11-23 Thread MRAB
On 23/11/2011 15:40, Alemu Tadesse wrote: I am new to python. I do not know why my python editor (for 2.7.2) changes everything to just black and white after saving. If you're using IDLE, are you saving the file without the .py extension? That could be the problem. No color for say the built

Re: Python 2.7.2 on XP

2011-11-23 Thread John Gordon
In "Alemu Tadesse" writes: > I am new to python. I do not know why my python editor (for 2.7.2) > changes everything to just black and white after saving. No color for What editor are you using? There are quite a lot of them. -- John Gordon A is for Amy, who fell down the

Python 2.7.2 on XP

2011-11-23 Thread Alemu Tadesse
Dear All, I am new to python. I do not know why my python editor (for 2.7.2) changes everything to just black and white after saving. No color for say the built in functions for loops defs they all look the same - it is annoying for someone coming from another editors that help you track/eas

Re: Python 2.7.2 on Win7 and IDLE (Try it)

2011-11-23 Thread Anssi Saari
"W. eWatson" writes: > One thing I think no one has offered is whether their installation of > 2.7.2 has the same IDLE oddity that I've described. That is, if you > right-click on a py file, do you see a choice for the IDLE editor? I don't have 2.7.2, but my Windows (7, 32 bit) machine has 3.2

Re: Python 2.7.2 on Win7 and IDLE (Try it)

2011-11-19 Thread W. eWatson
On 11/19/2011 5:51 AM, Alec Taylor wrote: Works fine for me from msi install on Windows 8 x64 Dev Preview On Sat, Nov 19, 2011 at 5:06 AM, W. eWatson wrote: Undoubtedly some of you have seen my post Both Python 2.5.2 and 2.7.2 flop the same way under Win 7. One thing I think no one has offere

Re: Python 2.7.2 on Win7 and IDLE (Try it)

2011-11-19 Thread W. eWatson
On 11/19/2011 5:51 AM, Alec Taylor wrote: Works fine for me from msi install on Windows 8 x64 Dev Preview On Sat, Nov 19, 2011 at 5:06 AM, W. eWatson wrote: Undoubtedly some of you have seen my post Both Python 2.5.2 and 2.7.2 flop the same way under Win 7. One thing I think no one has offere

Re: Python 2.7.2 on Win7 and IDLE (Try it)

2011-11-19 Thread W. eWatson
On 11/19/2011 2:34 AM, Terry Reedy wrote: On 11/18/2011 6:44 PM, Steven D'Aprano wrote: On Fri, 18 Nov 2011 10:06:47 -0800, W. eWatson wrote: Undoubtedly some of you have seen my post Both Python 2.5.2 and 2.7.2 flop the same way under Win 7. One thing I think no one has offered is whether th

Re: Python 2.7.2 on Win7 and IDLE (Try it)

2011-11-19 Thread W. eWatson
On 11/19/2011 2:39 AM, Terry Reedy wrote: On 11/19/2011 12:03 AM, W. eWatson wrote: I meant 3.2.2, not 3.3.2, sorry for typo. * Python 3.2.2 Windows x86 MSI Installer (Windows binary -- does not include source) this is 32 bit. Note that your c: has /program files for 64 bit programs and /pro

Re: Python 2.7.2 on Win7 and IDLE (Try it)

2011-11-19 Thread Alec Taylor
Works fine for me from msi install on Windows 8 x64 Dev Preview On Sat, Nov 19, 2011 at 5:06 AM, W. eWatson wrote: > Undoubtedly some of you have seen my post Both Python 2.5.2 and 2.7.2 flop > the same way under Win 7. > > One thing I think no one has offered is whether their installation of 2.7

Re: Python 2.7.2 on Win7 and IDLE (Try it)

2011-11-19 Thread Terry Reedy
On 11/19/2011 12:03 AM, W. eWatson wrote: I meant 3.2.2, not 3.3.2, sorry for typo. * Python 3.2.2 Windows x86 MSI Installer (Windows binary -- does not include source) this is 32 bit. Note that your c: has /program files for 64 bit programs and /program files(x86) for 32 bit programs. I kno

Re: Python 2.7.2 on Win7 and IDLE (Try it)

2011-11-19 Thread Terry Reedy
On 11/18/2011 6:44 PM, Steven D'Aprano wrote: On Fri, 18 Nov 2011 10:06:47 -0800, W. eWatson wrote: Undoubtedly some of you have seen my post Both Python 2.5.2 and 2.7.2 flop the same way under Win 7. One thing I think no one has offered is whether their installation of 2.7.2 has the same IDLE

Re: Python 2.7.2 on Win7 and IDLE (Try it)

2011-11-18 Thread W. eWatson
On 11/18/2011 9:03 PM, W. eWatson wrote: ... 3.3.2? I do not see that in his single message I found. I see a 3.2.2 release on . Google shows me nothing for 3.3.2. I see: * Windows x86 MSI Installer (3.2.2) (sig) and Visual Studio debug informatio

Re: Python 2.7.2 on Win7 and IDLE (Try it)

2011-11-18 Thread W. eWatson
... 3.3.2? I do not see that in his single message I found. I see a 3.2.2 release on . Google shows me nothing for 3.3.2. I see: * Windows x86 MSI Installer (3.2.2) (sig) and Visual Studio debug information files (sig) * Windows X86-64 MSI Install

Re: Python 2.7.2 on Win7 and IDLE (Try it)

2011-11-18 Thread Steven D'Aprano
On Fri, 18 Nov 2011 16:31:03 -0800, W. eWatson wrote: > Somehow 3.3.2 doesn't look like 2.7.2. Oops, so you're right. Sorry for the noise. -- Steven -- http://mail.python.org/mailman/listinfo/python-list

Re: Python 2.7.2 on Win7 and IDLE (Try it)

2011-11-18 Thread MRAB
On 19/11/2011 00:50, W. eWatson wrote: On 11/18/2011 4:31 PM, W. eWatson wrote: On 11/18/2011 3:44 PM, Steven D'Aprano wrote: On Fri, 18 Nov 2011 10:06:47 -0800, W. eWatson wrote: Undoubtedly some of you have seen my post Both Python 2.5.2 and 2.7.2 flop the same way under Win 7. One thing I

Re: Python 2.7.2 on Win7 and IDLE (Try it)

2011-11-18 Thread W. eWatson
On 11/18/2011 4:31 PM, W. eWatson wrote: On 11/18/2011 3:44 PM, Steven D'Aprano wrote: On Fri, 18 Nov 2011 10:06:47 -0800, W. eWatson wrote: Undoubtedly some of you have seen my post Both Python 2.5.2 and 2.7.2 flop the same way under Win 7. One thing I think no one has offered is whether the

Re: Python 2.7.2 on Win7 and IDLE (Try it)

2011-11-18 Thread W. eWatson
On 11/18/2011 3:44 PM, Steven D'Aprano wrote: On Fri, 18 Nov 2011 10:06:47 -0800, W. eWatson wrote: Undoubtedly some of you have seen my post Both Python 2.5.2 and 2.7.2 flop the same way under Win 7. One thing I think no one has offered is whether their installation of 2.7.2 has the same IDLE

Re: Python 2.7.2 on Win7 and IDLE (Try it)

2011-11-18 Thread Steven D'Aprano
On Fri, 18 Nov 2011 10:06:47 -0800, W. eWatson wrote: > Undoubtedly some of you have seen my post Both Python 2.5.2 and 2.7.2 > flop the same way under Win 7. > > One thing I think no one has offered is whether their installation of > 2.7.2 has the same IDLE oddity that I've described. That is,

Re: Python 2.7.2 on Win7 and IDLE (Try it)

2011-11-18 Thread W. eWatson
On 11/18/2011 10:06 AM, W. eWatson wrote: Undoubtedly some of you have seen my post Both Python 2.5.2 and 2.7.2 flop the same way under Win 7. One thing I think no one has offered is whether their installation of 2.7.2 has the same IDLE oddity that I've described. That is, if you right-click on

Python 2.7.2 on Win7 and IDLE (Try it)

2011-11-18 Thread W. eWatson
Undoubtedly some of you have seen my post Both Python 2.5.2 and 2.7.2 flop the same way under Win 7. One thing I think no one has offered is whether their installation of 2.7.2 has the same IDLE oddity that I've described. That is, if you right-click on a py file, do you see a choice for the

question on installing python 2.7.2 and tcl 8.5.10 on WinXP

2011-10-02 Thread Lynn Oliver
Hello, I'm having problems building tcl/tk and python on Windows XP so that both are installed correctly. 1. ActivePython 2.7.2.5 works fine on my system but may be implicated in recent R6034 runtime errors from users. 2. Python.org 2.7.2 msi binaries install fine, but produce a "tcl wasn't i

Re: error when use portable python 2.7.2

2011-09-27 Thread Nizamov Shawkat
I bet that the difference is in the environment settings (PYTHONPATH). Look here for details how to set it manually: http://docs.python.org/using/windows.html Hope it helps, S.Nizamov -- http://mail.python.org/mailman/listinfo/python-list

Re: error when use portable python 2.7.2

2011-09-27 Thread yixuan
On Sep 27, 7:01 pm, Alec Taylor wrote: > You're looking for > this:http://www.portablepython.com/wiki/PortablePython2.7.2.1 > > > > > > > > On Tue, Sep 27, 2011 at 8:48 PM, yixuan wrote: > > Hello, > > I copy python 2.7.2 folder from other machi

Re: error when use portable python 2.7.2

2011-09-27 Thread Alec Taylor
You're looking for this: http://www.portablepython.com/wiki/PortablePython2.7.2.1 On Tue, Sep 27, 2011 at 8:48 PM, yixuan wrote: > Hello, > I copy python 2.7.2 folder from other machine to my new installed > Windows XP. > If I run python.exe it would say side by side error, it i

error when use portable python 2.7.2

2011-09-27 Thread yixuan
Hello, I copy python 2.7.2 folder from other machine to my new installed Windows XP. If I run python.exe it would say side by side error, it is caused by crt environment. I copy msvc90 runtime and manifest into my folder, python.exe seems working now. But when I used 'import FixTk', it

Python 2.7.2 on AIX 6.1: Unable to compile with ctypes

2011-08-16 Thread eroussel
Hello, I'm trying to figure out the recipe to compile Python 2.7.2 on AIX 6.1 with the ctypes module. I'm using the xlc_r compiler V9.0. I am currently able to generate an interpreter that works, but lacks the ctypes module because of compilation errors. From looking at the newgroup

Re: Python 2.7.2 for Windows reports version as 2.7.0?

2011-06-22 Thread Gabriel Genellina
En Sun, 19 Jun 2011 12:35:38 -0300, escribió: The version info comes from the DLL - I wonder if the DLL being found is somehow old? Make sure: >>> import sys >>> win32api.GetModuleFileName(sys.dllhandle) Is the DLL you expect. After uninstalling and reinstalling for the current user only

Re: Python 2.7.2 for Windows reports version as 2.7.0?

2011-06-19 Thread python
Hi Mark, > The version info comes from the DLL - I wonder if the DLL being found is > somehow old? > > Make sure: > > >>> import sys > >>> win32api.GetModuleFileName(sys.dllhandle) > > Is the DLL you expect. After uninstalling and reinstalling for the current user only (vs. all users), Python no

Re: Python 2.7.2 for Windows reports version as 2.7.0?

2011-06-18 Thread Mark Hammond
On 18/06/2011 1:36 PM, pyt...@bdurham.com wrote: Hi Benjamin, The file info is seems correct but I just checked the MSI and it's reporting that it's 2.7.2. How exactly are you running python.exe and IDLE- are you calling the full path, just calling "python" and using whichever python version i

Re: Python 2.7.2 for Windows reports version as 2.7.0?

2011-06-18 Thread Ethan Furman
27;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

Re: Python 2.7.2 for Windows reports version as 2.7.0?

2011-06-18 Thread python
Benjamin, I tried uninstalling and re-installing Python 2.7.2 without success ... I kept getting the proper exe's, but when run, the Python version continued to be reported as 2.7.0. Finally I installed for current user only (vs. all users) - the installation now correctly reports my versi

Re: Python 2.7.2 for Windows reports version as 2.7.0?

2011-06-17 Thread python
he exe files in my Python27 folder: Directory of C:\Python27 06/12/2011 03:09 PM26,624 python.exe 06/12/2011 03:06 PM27,136 pythonw.exe Anyone else having the same experience? Malcolm On Fri, Jun 17, 2011 at 5:55 PM, wrote: > Just installed the 32-bit version Python 2.7.2

Re: Python 2.7.2 for Windows reports version as 2.7.0?

2011-06-17 Thread Benjamin Kaplan
On Fri, Jun 17, 2011 at 5:55 PM, wrote: > Just installed the 32-bit version Python 2.7.2 for Windows via the > python-2.7.2.msi download. > > When I start Python via python.exe or Idle, the version info is reported as > 2.7.0 vs. 2.7.2. > > Python 2.7 (r27:82525, Jul  4 2

Python 2.7.2 for Windows reports version as 2.7.0?

2011-06-17 Thread python
Just installed the 32-bit version Python 2.7.2 for Windows via the python-2.7.2.msi download. When I start Python via python.exe or Idle, the version info is reported as 2.7.0 vs. 2.7.2. Python 2.7 (r27:82525, Jul 4 2010, 09:01:59) [MSC v.1500 32 bit (Intel)] on win 32 Type "help",

Re: Python 2.7.2

2011-06-12 Thread jmfauth
On 12 juin, 19:57, Benjamin Peterson wrote: > On behalf of the Python development team, I'm rosy to announce the immediate > availability of Python 2.7.2. > Small error: The link points to Python 2.7.1. The 2.7.2 page exists: http://www.python.org/download/releases/2.7.2/ Updat

[RELEASE] Python 2.7.2

2011-06-12 Thread Benjamin Peterson
On behalf of the Python development team, I'm rosy to announce the immediate availability of Python 2.7.2. Since the release candidate 2 weeks ago, there have been 2 changes: 1. pyexpat.__version__ has be changed to be the Python version. 2. A regression from 3.1.3 in the handling of commen

[RELEASE] Python 2.7.2 release candidate 1

2011-05-29 Thread Benjamin Peterson
On behalf of the Python development team, I'm happy to announce the immediate availability of Python 2.7.2 release candidate 1. 2.7.2 is the second in bugfix release for the Python 2.7 series. 2.7 is the last major verison of the 2.x line and will be receiving bug fixes while new fe