gh-101100: Sphinx warnings: pick the low hanging fruits (GH-107386)

This commit is contained in:
Serhiy Storchaka 2023-07-29 08:48:10 +03:00 committed by GitHub
parent 413ba8943e
commit f2d07d3289
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
52 changed files with 125 additions and 139 deletions

View file

@ -154,7 +154,7 @@ exception type.
The *except clause* may specify a variable after the exception name. The
variable is bound to the exception instance which typically has an ``args``
attribute that stores the arguments. For convenience, builtin exception
types define :meth:`__str__` to print all the arguments without explicitly
types define :meth:`~object.__str__` to print all the arguments without explicitly
accessing ``.args``. ::
>>> try:
@ -174,7 +174,7 @@ accessing ``.args``. ::
x = spam
y = eggs
The exception's :meth:`__str__` output is printed as the last part ('detail')
The exception's :meth:`~object.__str__` output is printed as the last part ('detail')
of the message for unhandled exceptions.
:exc:`BaseException` is the common base class of all exceptions. One of its

View file

@ -23,7 +23,7 @@ Python statement names, the current local variables, and the available
module names. For dotted expressions such as ``string.a``, it will evaluate
the expression up to the final ``'.'`` and then suggest completions from
the attributes of the resulting object. Note that this may execute
application-defined code if an object with a :meth:`__getattr__` method
application-defined code if an object with a :meth:`~object.__getattr__` method
is part of the expression. The default configuration also saves your
history into a file named :file:`.python_history` in your user directory.
The history will be available again during the next interactive interpreter