summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2023-08-13 09:24:59 (GMT)
committerGitHub <noreply@github.com>2023-08-13 09:24:59 (GMT)
commit7ddc1eaff16fa946516283be82d8b2e2ef315b03 (patch)
tree365f46375606358a2bf5826f1f7c4a82764d9b3a /Modules
parentee40b3e20d9b8d62a9b36b777dff42db1e9049d5 (diff)
downloadcpython-7ddc1eaff16fa946516283be82d8b2e2ef315b03.zip
cpython-7ddc1eaff16fa946516283be82d8b2e2ef315b03.tar.gz
cpython-7ddc1eaff16fa946516283be82d8b2e2ef315b03.tar.bz2
Improve `_typing.__doc__` (#107908)
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_typingmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_typingmodule.c b/Modules/_typingmodule.c
index 59d3a80..9ea72bf 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)