From: Jelle Zijlstra Date: Sun, 23 Jan 2022 23:36:08 +0000 (-0800) Subject: fix typo in typing.rst (#30841) X-Git-Tag: v3.11.0a5~123 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d75a51bea3c2442f81d38ff850b81b8b7f3330f0;p=thirdparty%2FPython%2Fcpython.git fix typo in typing.rst (#30841) --- diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index cb14db90711c..cdfd403a34ef 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -2142,7 +2142,7 @@ Constant If ``from __future__ import annotations`` is used in Python 3.7 or later, annotations are not evaluated at function definition time. - Instead, they are stored as strings in ``__annotations__``, + Instead, they are stored as strings in ``__annotations__``. This makes it unnecessary to use quotes around the annotation. (see :pep:`563`).