Kaydet (Commit) 489d54ef authored tarafından Tim Peters's avatar Tim Peters

Typo repair in docstring -- my fault.

üst 41aa8e52
...@@ -165,7 +165,7 @@ math_frexp(PyObject *self, PyObject *args) ...@@ -165,7 +165,7 @@ math_frexp(PyObject *self, PyObject *args)
static char math_frexp_doc [] = static char math_frexp_doc [] =
"frexp(x)\n\ "frexp(x)\n\
\n\ \n\
Return the matissa and exponent of x, as pair (m, e).\n\ Return the mantissa and exponent of x, as pair (m, e).\n\
m is a float and e is an int, such that x = m * 2.**e.\n\ m is a float and e is an int, such that x = m * 2.**e.\n\
If x is 0, m and e are both 0. Else 0.5 <= abs(m) < 1.0."; If x is 0, m and e are both 0. Else 0.5 <= abs(m) < 1.0.";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment