[issue44536] wrong output of np.lcm.reduce(*awg)

2021-06-29 Thread Mark Dickinson
Mark Dickinson added the comment: It looks as though you're reporting an issue with NumPy; this tracker is for the Python core language, which doesn't include NumPy. For NumPy bugs, use the NumPy bug tracker at https://github.com/numpy/numpy/issues. (Though I don't think this _is_ a NumPy

[issue44536] wrong output of np.lcm.reduce(*awg)

2021-06-29 Thread 申泷轩
New submission from 申泷轩 <751630...@qq.com>: np.lcm.reduce([1,2,3,100]) Out[125]: 300 np.lcm.reduce([1,2,3,100,101]) Out[126]: 30300 np.lcm.reduce([1,2,3,100,101,99019]) Out[127]: -1294691596 30300*99019 Out[128]: 3000275700 -- assignee: docs@python components: Documentation files: a