We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a02a58 commit 02c4f17Copy full SHA for 02c4f17
Modules/mathmodule.c
@@ -770,7 +770,7 @@ long_lcm(PyObject *a, PyObject *b)
770
return PyLong_FromLong(0);
771
}
772
773
- /* Make sure a <= b to speed up (a // g) * b; see #102221 for details. */
+ /* Make sure |a| <= |b| to speed up (a // g) * b; see gh-102221 for details. */
774
if (_PyLong_DigitCount((PyLongObject *)b) < _PyLong_DigitCount((PyLongObject *)a)) {
775
g = a;
776
a = b;
0 commit comments