Skip to content

Commit f2a7a57

Browse files
committed
pythongh-111933: fix broken link to A.Neumaier article
1 parent 289af86 commit f2a7a57

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Python/bltinmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2611,7 +2611,7 @@ builtin_sum_impl(PyObject *module, PyObject *iterable, PyObject *start)
26112611
}
26122612
if (PyFloat_CheckExact(item)) {
26132613
// Improved Kahan–Babuška algorithm by Arnold Neumaier
2614-
// https://www.mat.univie.ac.at/~neum/scan/01.pdf
2614+
// https://web.archive.org/web/20220804051351/https://www.mat.univie.ac.at/~neum/scan/01.pdf
26152615
double x = PyFloat_AS_DOUBLE(item);
26162616
double t = f_result + x;
26172617
if (fabs(f_result) >= fabs(x)) {

0 commit comments

Comments
 (0)