bpo-36908: 'This module is always available' isn't helpful. (#13297)

Makes the documentation of math and cmath module
more helpful for the beginners.
This commit is contained in:
Ned Batchelder 2019-05-17 05:59:14 -04:00 committed by Kushal Das
parent cbb6484573
commit 6faad355db
4 changed files with 12 additions and 13 deletions

View file

@ -2759,8 +2759,8 @@ static PyMethodDef math_methods[] = {
PyDoc_STRVAR(module_doc,
"This module is always available. It provides access to the\n"
"mathematical functions defined by the C standard.");
"This module provides access to the mathematical functions\n"
"defined by the C standard.");
static struct PyModuleDef mathmodule = {