Skip to content

Commit 31e2ebb

Browse files
committed
address review: remove dot
1 parent 1a47eed commit 31e2ebb

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

Doc/library/math.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ Floating point manipulation functions
258258
Return the mantissa and exponent of *x* as the pair ``(m, e)``.
259259
If *x* is a finite nonzero number, then *m* is a float with
260260
``0.5 <= abs(m) < 1.0`` and an integer *e* is such that
261-
``x == m * 2.**e`` exactly. Else, return ``(x, 0)``.
261+
``x == m * 2**e`` exactly. Else, return ``(x, 0)``.
262262
This is used to "pick apart" the internal representation of
263263
a float in a portable way.
264264

Modules/clinic/mathmodule.c.h

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Modules/mathmodule.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1440,12 +1440,12 @@ Return the mantissa and exponent of x, as pair (m, e).
14401440
14411441
If x is a finite nonzero number, then m is a float with
14421442
0.5 <= abs(m) < 1.0 and an integer e is such that
1443-
x == m * 2.**e exactly. Else, return (x, 0).
1443+
x == m * 2**e exactly. Else, return (x, 0).
14441444
[clinic start generated code]*/
14451445

14461446
static PyObject *
14471447
math_frexp_impl(PyObject *module, double x)
1448-
/*[clinic end generated code: output=03e30d252a15ad4a input=904718c4ea236def]*/
1448+
/*[clinic end generated code: output=03e30d252a15ad4a input=215cf8ea28a0959b]*/
14491449
{
14501450
int i;
14511451
/* deal with special cases directly, to sidestep platform

0 commit comments

Comments
 (0)