Skip to content

Commit 02c4f17

Browse files
Update comment of abs value and pr
Co-authored-by: Sergey B Kirpichev <[email protected]>
1 parent 7a02a58 commit 02c4f17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/mathmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -770,7 +770,7 @@ long_lcm(PyObject *a, PyObject *b)
770770
return PyLong_FromLong(0);
771771
}
772772

773-
/* Make sure a <= b to speed up (a // g) * b; see #102221 for details. */
773+
/* Make sure |a| <= |b| to speed up (a // g) * b; see gh-102221 for details. */
774774
if (_PyLong_DigitCount((PyLongObject *)b) < _PyLong_DigitCount((PyLongObject *)a)) {
775775
g = a;
776776
a = b;

0 commit comments

Comments
 (0)