From 7ddc1eaff16fa946516283be82d8b2e2ef315b03 Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Sun, 13 Aug 2023 12:24:59 +0300 Subject: [PATCH] Improve `_typing.__doc__` (#107908) --- Modules/_typingmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/_typingmodule.c b/Modules/_typingmodule.c index 59d3a80a930..9ea72bf89ce 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)