File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -101,7 +101,7 @@ Changes to built-in modules:
101
101
+-----------------------------------------------------------------------------------------------------------+---------------+
102
102
| A new function *isclose() * provides a way to test for approximate equality. | |
103
103
+-----------------------------------------------------------------------------------------------------------+---------------+
104
- | A new *gcd() * function has been added. The *fractions.gcd() * function is now deprecated. | |
104
+ | A new *gcd() * function has been added. The *fractions.gcd() * function is now deprecated. | Completed |
105
105
+-----------------------------------------------------------------------------------------------------------+---------------+
106
106
| `os <https://docs.python.org/3/whatsnew/3.5.html#os >`_ |
107
107
+-----------------------------------------------------------------------------------------------------------+---------------+
Original file line number Diff line number Diff line change @@ -90,7 +90,7 @@ Changes to built-in modules:
90
90
+---------------------------------------------------------------------------------------------------------------+---------------+
91
91
| `math ` |
92
92
+---------------------------------------------------------------------------------------------------------------+---------------+
93
- | Expanded the *math.gcd() * function to handle multiple arguments. Formerly, it only supported two arguments | |
93
+ | Expanded the *math.gcd() * function to handle multiple arguments. Formerly, it only supported two arguments | Completed |
94
94
+---------------------------------------------------------------------------------------------------------------+---------------+
95
95
| Added *math.lcm() *: return the least common multiple of specified arguments | |
96
96
+---------------------------------------------------------------------------------------------------------------+---------------+
Original file line number Diff line number Diff line change @@ -104,6 +104,10 @@ Functions
104
104
105
105
Return the gamma function of ``x ``.
106
106
107
+ .. function :: gcd(x, y, ...)
108
+
109
+ Return the greatest common divisor of any amount of numbers with minimum of 2 arguments.
110
+
107
111
.. function :: isfinite(x)
108
112
109
113
Return ``True `` if ``x `` is finite.
You can’t perform that action at this time.
0 commit comments