Skip to content

Commit bad0fdb

Browse files
committed
Doc fixes for missing refs.
1 parent 9420a9d commit bad0fdb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Doc/library/decimal.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1892,7 +1892,7 @@ new threads. If the flag is false, new threads will start with an empty
18921892
context. In this case, :func:`getcontext` will create a new context object
18931893
when called and use the default values from *DefaultContext*. If the flag
18941894
is true, new threads will start with a copy of context from the caller of
1895-
:meth:`Thread.start`.
1895+
:meth:`threading.Thread.start`.
18961896

18971897
To control the defaults so that each thread will use the same values throughout
18981898
the application, directly modify the *DefaultContext* object. This should be

Doc/library/warnings.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -680,8 +680,8 @@ context_aware_warnings<-X>` command-line option or by the
680680
it. When true, the context established by :class:`catch_warnings`
681681
in one thread will also apply to new threads started by it. If false,
682682
new threads will start with an empty warnings context variable,
683-
meaning that only the filters in :data:`warnings.filters` will be
684-
active.
683+
meaning that any filtering that was established by a
684+
:class:`catch_warnings` context manager will no longer be active.
685685

686686
.. versionchanged:: 3.14
687687

0 commit comments

Comments
 (0)