PYTHONINSIDER Telegram 31
On behalf of the entire Python development community, and the currently serving Python release team in particular, I’m pleased to announce the release of Python 3.9.0b1. Get it here:

<a href="https://www.python.org/downloads/release/python-390b1/">https://www.python.org/downloads/release/python-390b1/</a>


This is a beta preview of Python 3.9Python 3.9 is still in development. This release, 3.9.0b1, is the first of four planned beta release previews.
Beta release previews are intended to give the wider community the opportunity to test new features and bug fixes and to prepare their projects to support the new feature release.

Call to actionWe <b>strongly encourage</b> maintainers of third-party Python projects to <b>test with 3.9</b> during the beta phase and report issues found to <a href="https://bugs.python.org/">the Python bug tracker</a> as soon as possible. While the release is planned to be feature complete entering the beta phase, it is possible that features may be modified or, in rare cases, deleted up until the start of the release candidate phase (2020-08-10). Our goal is have no ABI changes after beta 4 and as few code changes as possible after 3.9.0rc1, the first release candidate. To achieve that, it will be extremely important to get as much exposure for 3.9 as possible during the beta phase.
Please keep in mind that this is a preview release and its use is <b>not</b> recommended for production environments.

Major new features of the 3.9 series, compared to 3.8Some of the new major new features and changes in Python 3.9 are:
<a href="https://www.python.org/dev/peps/pep-0584/">PEP 584</a>, Union Operators in <code>dict</code>
<a href="https://www.python.org/dev/peps/pep-0585/">PEP 585</a>, Type Hinting Generics In Standard Collections
<a href="https://www.python.org/dev/peps/pep-0593/">PEP 593</a>, Flexible function and variable annotations
<a href="https://www.python.org/dev/peps/pep-0602/">PEP 602</a>, Python adopts a stable annual release cadence
<a href="https://www.python.org/dev/peps/pep-0616/">PEP 616</a>, String methods to remove prefixes and suffixes
<a href="https://www.python.org/dev/peps/pep-0617/">PEP 617</a>, New PEG parser for CPython
<a href="https://bugs.python.org/issue38379">BPO 38379</a>, garbage collection does not block on resurrected objects;
<a href="https://bugs.python.org/issue38692">BPO 38692</a>, os.pidfd_open added that allows process management without races and signals;
<a href="https://bugs.python.org/issue39926">BPO 39926</a>, Unicode support updated to version 13.0.0;
<a href="https://bugs.python.org/issue1635741">BPO 1635741</a>, when Python is initialized multiple times in the same process, it does not leak memory anymore;
A number of Python builtins (range, tuple, set, frozenset, list, dict) are now sped up using <a href="https://www.python.org/dev/peps/pep-0590">PEP 590</a> vectorcall;
A number of Python modules (_abc, audioop, _bz2, _codecs, _contextvars, _crypt, _functools, _json, _locale, operator, resource, time, _weakref) now use multiphase initialization as defined by <a href="https://www.python.org/dev/peps/pep-0489/">PEP 489</a>;
A number of standard library modules (audioop, ast, grp, _hashlib, pwd, _posixsubprocess, random, select, struct, termios, zlib) are now using the stable ABI defined by <a href="https://www.python.org/dev/peps/pep-0384/">PEP 384</a>.
(Hey, <b>fellow core developer,</b> if a feature you find important is missing from this list, <a href="mailto:[email protected]">let &#321;ukasz know</a>.)
The next pre-release, the second beta release of Python 3.9, will be 3.9.0b2. It is currently scheduled for 2020-06-08.

More resources<a href="https://docs.python.org/3.9/">Online Documentation</a><a href="https://www.python.org/dev/peps/pep-0596/">PEP 596</a>, 3.9 Release ScheduleReport bugs at <a href="https://bugs.python.org/">https://bugs.python.org</a>.<a href="https://discuss.python.org/psf/donations/">Help fund Python and its community</a>.Your…



tgoop.com/pythoninsider/31
Create:
Last Update:

On behalf of the entire Python development community, and the currently serving Python release team in particular, I’m pleased to announce the release of Python 3.9.0b1. Get it here:

<a href="https://www.python.org/downloads/release/python-390b1/">https://www.python.org/downloads/release/python-390b1/</a>


This is a beta preview of Python 3.9Python 3.9 is still in development. This release, 3.9.0b1, is the first of four planned beta release previews.
Beta release previews are intended to give the wider community the opportunity to test new features and bug fixes and to prepare their projects to support the new feature release.

Call to actionWe <b>strongly encourage</b> maintainers of third-party Python projects to <b>test with 3.9</b> during the beta phase and report issues found to <a href="https://bugs.python.org/">the Python bug tracker</a> as soon as possible. While the release is planned to be feature complete entering the beta phase, it is possible that features may be modified or, in rare cases, deleted up until the start of the release candidate phase (2020-08-10). Our goal is have no ABI changes after beta 4 and as few code changes as possible after 3.9.0rc1, the first release candidate. To achieve that, it will be extremely important to get as much exposure for 3.9 as possible during the beta phase.
Please keep in mind that this is a preview release and its use is <b>not</b> recommended for production environments.

Major new features of the 3.9 series, compared to 3.8Some of the new major new features and changes in Python 3.9 are:
<a href="https://www.python.org/dev/peps/pep-0584/">PEP 584</a>, Union Operators in <code>dict</code>
<a href="https://www.python.org/dev/peps/pep-0585/">PEP 585</a>, Type Hinting Generics In Standard Collections
<a href="https://www.python.org/dev/peps/pep-0593/">PEP 593</a>, Flexible function and variable annotations
<a href="https://www.python.org/dev/peps/pep-0602/">PEP 602</a>, Python adopts a stable annual release cadence
<a href="https://www.python.org/dev/peps/pep-0616/">PEP 616</a>, String methods to remove prefixes and suffixes
<a href="https://www.python.org/dev/peps/pep-0617/">PEP 617</a>, New PEG parser for CPython
<a href="https://bugs.python.org/issue38379">BPO 38379</a>, garbage collection does not block on resurrected objects;
<a href="https://bugs.python.org/issue38692">BPO 38692</a>, os.pidfd_open added that allows process management without races and signals;
<a href="https://bugs.python.org/issue39926">BPO 39926</a>, Unicode support updated to version 13.0.0;
<a href="https://bugs.python.org/issue1635741">BPO 1635741</a>, when Python is initialized multiple times in the same process, it does not leak memory anymore;
A number of Python builtins (range, tuple, set, frozenset, list, dict) are now sped up using <a href="https://www.python.org/dev/peps/pep-0590">PEP 590</a> vectorcall;
A number of Python modules (_abc, audioop, _bz2, _codecs, _contextvars, _crypt, _functools, _json, _locale, operator, resource, time, _weakref) now use multiphase initialization as defined by <a href="https://www.python.org/dev/peps/pep-0489/">PEP 489</a>;
A number of standard library modules (audioop, ast, grp, _hashlib, pwd, _posixsubprocess, random, select, struct, termios, zlib) are now using the stable ABI defined by <a href="https://www.python.org/dev/peps/pep-0384/">PEP 384</a>.
(Hey, <b>fellow core developer,</b> if a feature you find important is missing from this list, <a href="mailto:[email protected]">let &#321;ukasz know</a>.)
The next pre-release, the second beta release of Python 3.9, will be 3.9.0b2. It is currently scheduled for 2020-06-08.

More resources<a href="https://docs.python.org/3.9/">Online Documentation</a><a href="https://www.python.org/dev/peps/pep-0596/">PEP 596</a>, 3.9 Release ScheduleReport bugs at <a href="https://bugs.python.org/">https://bugs.python.org</a>.<a href="https://discuss.python.org/psf/donations/">Help fund Python and its community</a>.Your…

BY Python Insider




Share with your friend now:
tgoop.com/pythoninsider/31

View MORE
Open in Telegram


Telegram News

Date: |

With Bitcoin down 30% in the past week, some crypto traders have taken to Telegram to “voice” their feelings. "Doxxing content is forbidden on Telegram and our moderators routinely remove such content from around the world," said a spokesman for the messaging app, Remi Vaughn. On Tuesday, some local media outlets included Sing Tao Daily cited sources as saying the Hong Kong government was considering restricting access to Telegram. Privacy Commissioner for Personal Data Ada Chung told to the Legislative Council on Monday that government officials, police and lawmakers remain the targets of “doxxing” despite a privacy law amendment last year that criminalised the malicious disclosure of personal information. 6How to manage your Telegram channel? Members can post their voice notes of themselves screaming. Interestingly, the group doesn’t allow to post anything else which might lead to an instant ban. As of now, there are more than 330 members in the group.
from us


Telegram Python Insider
FROM American