[issue39648] Expand math.gcd() and math.lcm() to accept multiple arguments

2020-02-23 Thread Mark Dickinson
Mark Dickinson added the comment: Merged; thank you to all involved. -- stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue39648] Expand math.gcd() and math.lcm() to accept multiple arguments

2020-02-23 Thread Mark Dickinson
Mark Dickinson added the comment: New changeset 559e7f165ad03731e6bc2211c0e6d8d9c02fb549 by Serhiy Storchaka in branch 'master': bpo-39648: Expand math.gcd() and math.lcm() to handle multiple arguments. (GH-18604) https://github.com/python/cpython/commit/559e7f165ad03731e6bc2211c0e6d8d9c02fb

[issue39648] Expand math.gcd() and math.lcm() to accept multiple arguments

2020-02-22 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: If expand math.gcd() to accept multiple arguments, it is worth to do the same with math.lcm(). -- title: Update math.gcd() to accept "n" arguments. -> Expand math.gcd() and math.lcm() to accept multiple arguments __