From: Nikita Sobolev Date: Sun, 13 Aug 2023 09:24:59 +0000 (+0300) Subject: Improve `_typing.__doc__` (#107908) X-Git-Tag: v3.13.0a1~984 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7ddc1eaff16fa946516283be82d8b2e2ef315b03;p=thirdparty%2FPython%2Fcpython.git Improve `_typing.__doc__` (#107908) --- diff --git a/Modules/_typingmodule.c b/Modules/_typingmodule.c index 59d3a80a9305..9ea72bf89ce0 100644 --- a/Modules/_typingmodule.c +++ b/Modules/_typingmodule.c @@ -40,7 +40,7 @@ static PyMethodDef typing_methods[] = { }; PyDoc_STRVAR(typing_doc, -"Accelerators for the typing module.\n"); +"Primitives and accelerators for the typing module.\n"); static int _typing_exec(PyObject *m)