8000 gh-101100: Fix Sphinx warnings in `whatsnew/2.1.rst` by hugovk · Pull Request #112357 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-101100: Fix Sphinx warnings in whatsnew/2.1.rst #112357

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Feb 26, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply suggestions from code review
Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu>
  • Loading branch information
hugovk and terryjreedy authored Feb 25, 2024
commit dcae06ac807ddf3ee4f5f54ffe98ff2d3f1919c0
4 changes: 2 additions & 2 deletions Doc/whatsnew/2.1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ Python classes can now individually overload each of the ``<``, ``<=``, ``>``,
+-----------+------------------------+
| Operation | Method name |
+===========+========================+
| ``<`` | :func:`~object.__lt__` |
| ``<`` | :meth:`~object.__lt__` |
+-----------+------------------------+
| ``<=`` | :meth:`~object.__le__` |
+-----------+------------------------+
Expand Down Expand Up @@ -585,7 +585,7 @@ New and Improved Modules
========================

* Ka-Ping Yee contributed two new modules: :mod:`!inspect.py`, a module for
getting information about live Python code, and :mod:`!1pydoc.py`, a module for
getting information about live Python code, and :mod:`!pydoc.py`, a module for
interactively converting docstrings to HTML or text. As a bonus,
:file:`Tools/scripts/pydoc`, which is now automatically installed, uses
:mod:`!pydoc.py` to display documentation given a Python module, package, or
Expand Down
0