Skip to content

Commit 074f6b3

Browse files
committed
Deploying to gh-pages from @ 8df9ecb 🚀
1 parent 30f72ee commit 074f6b3

File tree

539 files changed

+8193
-7596
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

539 files changed

+8193
-7596
lines changed

.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: b5f2ce9acaa5f47f79bb65a7af64d2e7
3+
config: 4768ebd3e5acc4f1ced61493bc610407
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

_sources/library/contextlib.rst.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,9 @@ Functions and classes provided:
314314

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

319321
.. versionadded:: 3.4
320322

_sources/library/email.header.rst.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ Here is the :class:`Header` class description:
7777
The maximum line length can be specified explicitly via *maxlinelen*. For
7878
splitting the first line to a shorter value (to account for the field header
7979
which isn't included in *s*, e.g. :mailheader:`Subject`) pass in the name of the
80-
field in *header_name*. The default *maxlinelen* is 76, and the default value
80+
field in *header_name*. The default *maxlinelen* is 78, and the default value
8181
for *header_name* is ``None``, meaning it is not taken into account for the
8282
first line of a long, split header.
8383

_sources/library/exceptions.rst.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -967,7 +967,8 @@ their subgroups based on the types of the contained exceptions.
967967
Returns an exception group with the same :attr:`message`, but which
968968
wraps the exceptions in ``excs``.
969969

970-
This method is used by :meth:`subgroup` and :meth:`split`. A
970+
This method is used by :meth:`subgroup` and :meth:`split`, which
971+
are used in various contexts to break up an exception group. A
971972
subclass needs to override it in order to make :meth:`subgroup`
972973
and :meth:`split` return instances of the subclass rather
973974
than :exc:`ExceptionGroup`.

_sources/library/functions.rst.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1496,7 +1496,9 @@ are always available. They are listed here in alphabetical order.
14961496
returns ``100``, but ``pow(10, -2)`` returns ``0.01``. For a negative base of
14971497
type :class:`int` or :class:`float` and a non-integral exponent, a complex
14981498
result is delivered. For example, ``pow(-9, 0.5)`` returns a value close
1499-
to ``3j``.
1499+
to ``3j``. Whereas, for a negative base of type :class:`int` or :class:`float`
1500+
with an integral exponent, a float result is delivered. For example,
1501+
``pow(-9, 2.0)`` returns ``81.0``.
15001502

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

0 commit comments

Comments
 (0)