|
|
Subscribe / Log in / New account

Python 3.5.0 released

From:  Larry Hastings <larry-AT-hastings.org>
To:  Python-Dev <python-dev-AT-python.org>, python-list-AT-python.org, python-committers <python-committers-AT-python.org>, python-announce-AT-python.org
Subject:  [RELEASED] Python 3.5.0 is now available
Date:  Sun, 13 Sep 2015 15:28:34 +0100
Message-ID:  <55F58812.1030001@hastings.org>



On behalf of the Python development community and the Python 3.5 release 
team, I'm proud to announce the availability of Python 3.5.0.  Python 
3.5.0 is the newest version of the Python language, and it contains many 
exciting new features and optimizations.


You can read all about what's new in Python 3.5.0 here:

    https://docs.python.org/3.5/whatsnew/3.5.html


And you can download Python 3.5.0 here:

    https://www.python.org/downloads/release/python-350/

Windows and Mac users: please read the important platform-specific 
"Notes on this release" section near the end of that page.


We hope you enjoy Python 3.5.0!


//arry/
-- 
https://mail.python.org/mailman/listinfo/python-announce-...

        Support the Python Software Foundation:
        http://www.python.org/psf/donations/




to post comments

One of the ugliest aspect of Python finally fixed

Posted Sep 14, 2015 10:57 UTC (Mon) by pieleric (guest, #51846) [Link] (3 responses)

One small thing that has been annoying me in Python was that to get the "infinity" constant you had to use some kind of hack: use the result of "float('inf')". Not a big thing, but really ugly.

It's now finally possible to write "math.inf" :-)

One of the ugliest aspect of Python finally fixed

Posted Sep 17, 2015 9:44 UTC (Thu) by jwilk (subscriber, #63328) [Link] (2 responses)

The infinity constant does exist... sort of...
>>> 1e999
inf

One of the ugliest aspect of Python finally fixed

Posted Sep 28, 2015 2:59 UTC (Mon) by zuki (subscriber, #41808) [Link] (1 responses)

Also
>>> import numpy
>>> numpy.inf
inf

One of the ugliest aspect of Python finally fixed

Posted Sep 28, 2015 22:52 UTC (Mon) by dashesy (guest, #74652) [Link]

Yup, but if `inf` is the only thing you want, better have fewer dependencies.


Copyright © 2015, Eklektix, Inc.
Comments and public postings are copyrighted by their creators.
Linux is a registered trademark of Linus Torvalds