diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2023-08-13 09:24:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-13 09:24:59 (GMT) |
commit | 7ddc1eaff16fa946516283be82d8b2e2ef315b03 (patch) | |
tree | 365f46375606358a2bf5826f1f7c4a82764d9b3a /Modules | |
parent | ee40b3e20d9b8d62a9b36b777dff42db1e9049d5 (diff) | |
download | cpython-7ddc1eaff16fa946516283be82d8b2e2ef315b03.zip cpython-7ddc1eaff16fa946516283be82d8b2e2ef315b03.tar.gz cpython-7ddc1eaff16fa946516283be82d8b2e2ef315b03.tar.bz2 |
Improve `_typing.__doc__` (#107908)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_typingmodule.c | 2 |
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) |