diff options
author | Christian Clauss <cclauss@me.com> | 2021-10-06 17:40:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-06 17:40:09 (GMT) |
commit | 470145f572b53fe73518cda1eeacc56fec78c1b2 (patch) | |
tree | 10071daf26de01236ec7797d4aef895df719a01a /Misc/NEWS.d/3.10.0b1.rst | |
parent | f528045f695f7483d955a1eae4c1df68b1b4cacd (diff) | |
download | cpython-470145f572b53fe73518cda1eeacc56fec78c1b2.zip cpython-470145f572b53fe73518cda1eeacc56fec78c1b2.tar.gz cpython-470145f572b53fe73518cda1eeacc56fec78c1b2.tar.bz2 |
[Misc] [Mac] Fix typos found using codespell (GH-28756)
Diffstat (limited to 'Misc/NEWS.d/3.10.0b1.rst')
-rw-r--r-- | Misc/NEWS.d/3.10.0b1.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Misc/NEWS.d/3.10.0b1.rst b/Misc/NEWS.d/3.10.0b1.rst index 25c3943..e4391a1 100644 --- a/Misc/NEWS.d/3.10.0b1.rst +++ b/Misc/NEWS.d/3.10.0b1.rst @@ -276,7 +276,7 @@ cause any runtime effects with ``from __future__ import annotations``. .. nonce: 0Ik1AM .. section: Core and Builtins -:exc:`SyntaxError` exceptions raised by the intepreter will highlight the +:exc:`SyntaxError` exceptions raised by the interpreter will highlight the full error range of the expression that consistutes the syntax error itself, instead of just where the problem is detected. Patch by Pablo Galindo. @@ -547,7 +547,7 @@ enum or one of its members' value. .. nonce: ejjsyR .. section: Library -For backwards compatbility with previous minor versions of Python, if +For backwards compatibility with previous minor versions of Python, if :func:`typing.get_type_hints` receives no namespace dictionary arguments, :func:`typing.get_type_hints` will search through the global then local namespaces during evaluation of stringized type annotations (string forward @@ -720,9 +720,9 @@ now raise ``TypeError`` during substitution. .. nonce: xT9QjF .. section: Library -The :mod:`multiprocessing` ``Server`` class now explicitly catchs +The :mod:`multiprocessing` ``Server`` class now explicitly catches :exc:`SystemExit` and closes the client connection in this case. It happens -when the ``Server.serve_client()`` method reachs the end of file (EOF). +when the ``Server.serve_client()`` method reaches the end of file (EOF). .. @@ -1132,7 +1132,7 @@ preferred "user", "home", and "prefix" (default) scheme names. .. section: Library Improve :meth:`sqlite3.Connection.backup` error handling. The error message -for non-existant target database names is now ``unknown database <database +for non-existent target database names is now ``unknown database <database name>`` instead of ``SQL logic error``. Patch by Erlend E. Aasland. .. |