From: wavebyrd <160968744+wavebyrd@users.noreply.github.com> Date: Mon, 16 Mar 2026 19:25:31 +0000 (-0400) Subject: gh-145870: Fix Format.SOURCE reference in get_annotations docstring (#145889) X-Git-Tag: v3.15.0a8~283 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2a0fa500f82fc160feb726c0631f58c9a2f76796;p=thirdparty%2FPython%2Fcpython.git gh-145870: Fix Format.SOURCE reference in get_annotations docstring (#145889) The get_annotations() docstring incorrectly referred to the SOURCE format, which was renamed to STRING during PEP 749 development. Co-authored-by: Carson Jones --- diff --git a/Lib/annotationlib.py b/Lib/annotationlib.py index 832d160de7f4..df8fb5e4c620 100644 --- a/Lib/annotationlib.py +++ b/Lib/annotationlib.py @@ -919,7 +919,7 @@ def get_annotations( does not exist, the __annotate__ function is called. The FORWARDREF format uses __annotations__ if it exists and can be evaluated, and otherwise falls back to calling the __annotate__ function. - The SOURCE format tries __annotate__ first, and falls back to + The STRING format tries __annotate__ first, and falls back to using __annotations__, stringified using annotations_to_string(). This function handles several details for you: