diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-09-09 10:10:04 -0700 |
---|---|---|
committer | Pablo Galindo <pablogsal@gmail.com> | 2021-09-14 19:58:05 +0100 |
commit | 73af5ba83109118d6fb3367c59cacb4263143259 (patch) | |
tree | 56bcca1ad7d898d54dbe909f60eff8e5af332f5f | |
parent | a272ffef33d956a1d5bcb4712f95490330a5c5d7 (diff) | |
download | cpython-git-73af5ba83109118d6fb3367c59cacb4263143259.tar.gz |
Fix minor typo in 3.10.rst (GH-28253) (GH-28259)
(cherry picked from commit 73668541357caa813e7daa8792fab6fdf755a07f)
Co-authored-by: D.Lintin <diantolintin3@gmail.com>
Co-authored-by: D.Lintin <diantolintin3@gmail.com>
-rw-r--r-- | Doc/whatsnew/3.10.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index dbf89239d6..5a5f4a360f 100644 --- a/Doc/whatsnew/3.10.rst +++ b/Doc/whatsnew/3.10.rst @@ -1843,7 +1843,7 @@ Changes in the Python syntax * Deprecation warning is now emitted when compiling previously valid syntax if the numeric literal is immediately followed by a keyword (like in ``0in x``). - If future releases it will be changed to syntax warning, and finally to a + In future releases it will be changed to syntax warning, and finally to a syntax error. To get rid of the warning and make the code compatible with future releases just add a space between the numeric literal and the following keyword. |