mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
gh-101100: Sphinx warnings: pick the low hanging fruits (GH-107386)
This commit is contained in:
parent
413ba8943e
commit
f2d07d3289
52 changed files with 125 additions and 139 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue