From: mushitoriami <232557021+mushitoriami@users.noreply.github.com> Date: Thu, 18 Jun 2026 17:45:04 +0000 (+0900) Subject: docs: Fix broken reference of parameter type in `library/logging.rst` (GH-151645) X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=15d74068f3a2f093e0b73dd7a74938fa6d7f7460;p=thirdparty%2FPython%2Fcpython.git docs: Fix broken reference of parameter type in `library/logging.rst` (GH-151645) --- diff --git a/Doc/library/logging.rst b/Doc/library/logging.rst index aba530844d71..a3d117c10702 100644 --- a/Doc/library/logging.rst +++ b/Doc/library/logging.rst @@ -690,7 +690,7 @@ Formatter Objects :param defaults: A dictionary with default values to use in custom fields. For example, ``logging.Formatter('%(ip)s %(message)s', defaults={"ip": None})`` - :type defaults: dict[str, Any] + :type defaults: dict[str, typing.Any] .. versionchanged:: 3.2 Added the *style* parameter.