diff options
author | Zackery Spytz <zspytz@gmail.com> | 2022-05-19 15:05:04 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-19 15:05:04 (GMT) |
commit | fb082c2fc5a925085b179e63ca10b7f60b356d2f (patch) | |
tree | 910e2620bf1736d1603e7d26e54c6655b6efda6a /Misc/NEWS.d | |
parent | 97b9c1096feff77a564787ef520cc7d4e1d1c45f (diff) | |
download | cpython-fb082c2fc5a925085b179e63ca10b7f60b356d2f.zip cpython-fb082c2fc5a925085b179e63ca10b7f60b356d2f.tar.gz cpython-fb082c2fc5a925085b179e63ca10b7f60b356d2f.tar.bz2 |
bpo-45393: help() on operator precedence has misleading entries (GH-31246)
Fix the formatting for "await x" and "not x" in the operator
precedence table.
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Library/2022-02-09-23-44-27.bpo-45393.9v5Y8U.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2022-02-09-23-44-27.bpo-45393.9v5Y8U.rst b/Misc/NEWS.d/next/Library/2022-02-09-23-44-27.bpo-45393.9v5Y8U.rst new file mode 100644 index 0000000..0a239b0 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-02-09-23-44-27.bpo-45393.9v5Y8U.rst @@ -0,0 +1,2 @@ +Fix the formatting for ``await x`` and ``not x`` in the operator precedence +table when using the :func:`help` system. |