Skip to content

Commit

Permalink
Deploying to gh-pages from @ 8df9ecb 🚀
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwang44 committed Jun 9, 2024
1 parent 30f72ee commit 074f6b3
Show file tree
Hide file tree
Showing 539 changed files with 8,193 additions and 7,596 deletions.
2 changes: 1 addition & 1 deletion .buildinfo
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
config: b5f2ce9acaa5f47f79bb65a7af64d2e7
config: 4768ebd3e5acc4f1ced61493bc610407
tags: 645f666f9bcd5a90fca523b33c5a78b7
4 changes: 3 additions & 1 deletion _sources/library/contextlib.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,9 @@ Functions and classes provided:

If the code within the :keyword:`!with` block raises a
:exc:`BaseExceptionGroup`, suppressed exceptions are removed from the
group. If any exceptions in the group are not suppressed, a group containing them is re-raised.
group. Any exceptions of the group which are not suppressed are re-raised in
a new group which is created using the original group's :meth:`~BaseExceptionGroup.derive`
method.

.. versionadded:: 3.4

Expand Down
2 changes: 1 addition & 1 deletion _sources/library/email.header.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Here is the :class:`Header` class description:
The maximum line length can be specified explicitly via *maxlinelen*. For
splitting the first line to a shorter value (to account for the field header
which isn't included in *s*, e.g. :mailheader:`Subject`) pass in the name of the
field in *header_name*. The default *maxlinelen* is 76, and the default value
field in *header_name*. The default *maxlinelen* is 78, and the default value
for *header_name* is ``None``, meaning it is not taken into account for the
first line of a long, split header.

Expand Down
3 changes: 2 additions & 1 deletion _sources/library/exceptions.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,8 @@ their subgroups based on the types of the contained exceptions.
Returns an exception group with the same :attr:`message`, but which
wraps the exceptions in ``excs``.

This method is used by :meth:`subgroup` and :meth:`split`. A
This method is used by :meth:`subgroup` and :meth:`split`, which
are used in various contexts to break up an exception group. A
subclass needs to override it in order to make :meth:`subgroup`
and :meth:`split` return instances of the subclass rather
than :exc:`ExceptionGroup`.
Expand Down
4 changes: 3 additions & 1 deletion _sources/library/functions.rst.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1496,7 +1496,9 @@ are always available. They are listed here in alphabetical order.
returns ``100``, but ``pow(10, -2)`` returns ``0.01``. For a negative base of
type :class:`int` or :class:`float` and a non-integral exponent, a complex
result is delivered. For example, ``pow(-9, 0.5)`` returns a value close
to ``3j``.
to ``3j``. Whereas, for a negative base of type :class:`int` or :class:`float`
with an integral exponent, a float result is delivered. For example,
``pow(-9, 2.0)`` returns ``81.0``.

For :class:`int` operands *base* and *exp*, if *mod* is present, *mod* must
also be of integer type and *mod* must be nonzero. If *mod* is present and
Expand Down
Loading

0 comments on commit 074f6b3

Please sign in to comment.