Deutsch English Français Italiano |
<mailman.31.1746639702.3008.python-list@python.org> View for Bookmarking (what is this?) Look up another Usenet article |
Path: news.eternal-september.org!eternal-september.org!feeder3.eternal-september.org!fu-berlin.de!uni-berlin.de!not-for-mail From: Hugo van Kemenade <hugo@python.org> Newsgroups: comp.lang.python Subject: Python 3.14.0 beta 1 is here! Date: Wed, 7 May 2025 20:41:29 +0300 Lines: 160 Message-ID: <mailman.31.1746639702.3008.python-list@python.org> References: <CANKMJBMbpaXEZV84wrLxwaB97GkryJGufpRMyQ=tpHvnoXyLCw@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Trace: news.uni-berlin.de CEUbpI5NISqdKEpUg/u1HAfdAdD4QT3P4nr0wrCc+TCw== Cancel-Lock: sha1:X7Gx+HwgnWaA7grkSjPP0fVK2Vk= sha256:+HbHrl5UO9PoMz2TK6ZjyK/EP4TXB0dIVMPCKaqinRU= Return-Path: <hugo@python.org> X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=python.org; s=200901; t=1746639700; bh=+3a9pgoqV6U33YUVUrqYbdu9W+++swvARqcjuQrec8I=; h=From:Date:Subject:To:From; b=OQURlfaq9ikEYYNoiYV+e/COYVDFPGkiQCpvukyI3xsIO2vxxdrGpqKap8Q+TnBBa TxGXJCbJEGbsPoK5j37MUDypXaqOluASflMMOhLy5ezKNURuHqbBLQZ1bVQNGtwwGf GYOEpFRkIwGO+PscmeEa8cGuNjhmtvPOrqBXu3eY= X-Forwarded-Encrypted: i=1; AJvYcCXZp3XmXMCHIdli2K/15TerC6CV0fVaDvYobvGl8cmZVHx5w4XWLa3AtdEFojJcO4r/9RheZdJ1TtoMxw==@python.org X-Gm-Message-State: AOJu0Yyg84sbH8nhS+2E/lVcpbVeuLv5N643TK7tCNH0wg+3JMBOp+p+ Pn+76BtRGrzqpZ3gCX1rAW4E+z/EiOt7mT6u+3dn5b0GSas/lthyZX/j6vkY828zKvAOLK3hS5R dDX7hCjN5vRdpGI1l758DHdU0CnA= X-Google-Smtp-Source: AGHT+IEaph29zMY1+GcNbUP95Gj2wEGV0zQ0iqSmkNZMjz78Q+LTBPjhD8S06NwtnDsUCDmvAmU38ygf6sDgUGtujBo= X-Received: by 2002:a17:907:3da5:b0:aca:bd09:3cf2 with SMTP id a640c23a62f3a-ad1e8d2a911mr144166466b.13.1746639700257; Wed, 07 May 2025 10:41:40 -0700 (PDT) X-Gmail-Original-Message-ID: <CANKMJBMbpaXEZV84wrLxwaB97GkryJGufpRMyQ=tpHvnoXyLCw@mail.gmail.com> X-Gm-Features: ATxdqUEsm7DL4PYPpNQzHrfvtZDJU4DA6TCJANDl_9iGzLcduC8BvlX9xcApdc8 X-Content-Filtered-By: Mailman/MimeDel 2.1.39 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.39 Precedence: list List-Id: General discussion list for the Python programming language <python-list.python.org> List-Unsubscribe: <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> List-Archive: <https://mail.python.org/pipermail/python-list/> List-Post: <mailto:python-list@python.org> List-Help: <mailto:python-list-request@python.org?subject=help> List-Subscribe: <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> X-Mailman-Original-Message-ID: <CANKMJBMbpaXEZV84wrLxwaB97GkryJGufpRMyQ=tpHvnoXyLCw@mail.gmail.com> Only one day late, welcome to the first beta! https://www.python.org/downloads/release/python-3140b1/ This is a beta preview of Python 3.14 Python 3.14 is still in development. This release, 3.14.0b1, is the first of four planned beta releases. 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. We strongly encourage maintainers of third-party Python projects to test with 3.14 during the beta phase and report issues found to the Python bug tracker as soon as possible (https://github.com/python/cpython/issues). 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 (Tuesday 2025-07-22). Our goal is to have no ABI changes after beta 4 and as few code changes as possible after the first release candidate. To achieve that, it will be extremely important to get as much exposure for 3.14 as possible during the beta phase. Please keep in mind that this is a preview release and its use is not recommended for production environments. Major new features of the 3.14 series, compared to 3.13 Some of the major new features and changes in Python 3.14 are: New features - PEP 649: The evaluation of type annotations is now deferred, improving the semantics of using annotations. - PEP 750: Template string literals (t-strings) for custom string processing, using the familiar syntax of f-strings. - PEP 784: A new module compression.zstd providing support for the Zstandard compression algorithm. - PEP 758: except and except* expressions may now omit the brackets. - Syntax highlighting in PyREPL, and support for color in unittest, argparse, json and calendar CLIs. - PEP 768: A zero-overhead external debugger interface for CPython. - UUID versions 6-8 are now supported by the uuid module, and generation of versions 3-5 and 8 are up to 40% faster. - PEP 765: Disallow return/break/continue that exit a finally block. - PEP 741: An improved C API for configuring Python. - A new type of interpreter. For certain newer compilers, this interpreter provides significantly better performance. Opt-in for now, requires building from source. - Improved error messages. - Builtin implementation of HMAC with formally verified code from the HACL* project. For more details on the changes to Python 3.14, see What=E2=80=99s new in P= ython 3.14. https://docs.python.org/3.14/whatsnew/3.14.html The next pre-release of Python 3.14 will be 3.14.0b2, scheduled for 2025-05-27. Build changes - PEP 761: Python 3.14 and onwards no longer provides PGP signatures for release artifacts. Instead, Sigstore is recommended for verifiers. - Official macOS and Windows release binaries include an experimental JIT compiler. Incompatible changes, removals and new deprecations - https://docs.python.org/3.14/whatsnew/3.14.html#incompatible-changes - https://docs.python.org/3.14/whatsnew/3.14.html#removed - https://docs.python.org/3.14/whatsnew/3.14.html#deprecated - https://docs.python.org/3.14/whatsnew/3.14.html#c-api-removed - https://docs.python.org/3.14/whatsnew/3.14.html#c-api-deprecated Python install manager The installer we offer for Windows is being replaced by our new install manager, which can be installed from the Windows Store or our FTP page. See our documentation for more information. The JSON file available for download below contains the list of all the installable packages available as part of this release, including file URLs and hashes, but is not required to install the latest release. The traditional installer will remain available throughout the 3.14 and 3.15 releases. More resources - Online documentation: https://docs.python.org/3.14/ - PEP 745, 3.14 Release Schedule: https://peps.python.org/pep-0745/ - Report bugs at https://github.com/python/cpython/issues - Help fund Python and its community: https://www.python.org/psf/donations/ Note During the release process, we discovered a test that only failed when run sequentially and only when run after a certain number of other tests. This appears to be a problem with the test itself, and we will make it more robust for beta 2. For details, see https://github.com/python/cpython/issues/133532 And now for something completely different The mathematical constant pi is represented by the Greek letter =CF=80 and represents the ratio of a circle=E2=80=99s circumference to its diameter. T= he first person to use =CF=80 as a symbol for this ratio was Welsh self-taught mathematician William Jones in 1706. He was a farmer=E2=80=99s son born in Llanfihangel Tre=E2=80=99r Beirdd on Angelsy (Ynys M=C3=B4n) in 1675 and on= ly received a basic education at a local charity school. However, the owner of his parents=E2=80=99 farm noticed his mathematical ability and arranged for him= to move to London to work in a bank. By age 20, he served at sea in the Royal Navy, teaching sailors mathematics and helping with the ship=E2=80=99s navigation. On return to London seven y= ears later, he became a maths teacher in coffee houses and a private tutor. In 1706, Jones published Synopsis Palmariorum Matheseos which used the symbol =CF=80 for the ratio of a circle=E2=80=99s circumference to diameter. Jones= was also the first person to realise =CF=80 is an irrational number, meaning it can be written as a decimal number that goes on forever, but cannot be written as a fraction of two integers. But why =CF=80? It=E2=80=99s thought Jones used the Greek letter =CF=80 bec= ause it=E2=80=99s the first letter in perimetron or perimeter. Jones was the first to use =CF=80 = as our familiar ratio but wasn=E2=80=99t the first to use it in as part of the= ratio. William Oughtred, in his 1631 Clavis Mathematicae (The Key of Mathematics), used =CF=80/=CE=B4 to represent what we now call pi. His =CF=80 was the cir= cumference, not the ratio of circumference to diameter. James Gregory, in his 1668 Geometriae Pars Universalis (The Universal Part of Geometry) used =CF=80/= =CF=81 instead, where =CF=81 is the radius, making the ratio 6.28=E2=80=A6 or =CF= =84. After Jones, Leonhard Euler had used =CF=80 for 6.28=E2=80=A6, and also p for 3.14=E2=80= =A6, before settling on and popularising =CF=80 for the famous ratio. Enjoy the new release Thanks to all of the many volunteers who help make Python Development and these releases possible! Please consider supporting our efforts by volunteering yourself or through organisation contributions to the Python Software Foundation. ========== REMAINDER OF ARTICLE TRUNCATED ==========