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/
Posted Sep 14, 2015 10:57 UTC (Mon)
by pieleric (guest, #51846)
[Link] (3 responses)
It's now finally possible to write "math.inf" :-)
Posted Sep 17, 2015 9:44 UTC (Thu)
by jwilk (subscriber, #63328)
[Link] (2 responses)
Posted Sep 28, 2015 2:59 UTC (Mon)
by zuki (subscriber, #41808)
[Link] (1 responses)
Posted Sep 28, 2015 22:52 UTC (Mon)
by dashesy (guest, #74652)
[Link]
One of the ugliest aspect of Python finally fixed
The infinity constant does exist... sort of...
One of the ugliest aspect of Python finally fixed
>>> 1e999
inf
One of the ugliest aspect of Python finally fixed
>>> import numpy
>>> numpy.inf
inf
One of the ugliest aspect of Python finally fixed