aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* bpo-39648: Expand math.gcd() and math.lcm() to handle multiple arguments. (GH...Serhiy Storchaka2020-02-231-61/+1
* bpo-39479:Add math.lcm() function: Least Common Multiple (#18547)ananthan-1232020-02-191-1/+31
* bpo-39310: Add math.ulp(x) (GH-17965)Victor Stinner2020-01-131-1/+40
* bpo-39288: Add math.nextafter(x, y) (GH-17937)Victor Stinner2020-01-121-1/+49
* bpo-37942: Improve argument clinic float converter (GH-15470)Raymond Hettinger2019-08-241-49/+145
* bpo-37691: Let math.dist() accept sequences and iterables for coordinates (GH...Raymond Hettinger2019-07-271-11/+3
* bpo-37178: Allow a one argument form of math.perm() (GH-13905)Raymond Hettinger2019-06-081-4/+11
* bpo-35431: Drop the k <= n requirement (GH-13798)Raymond Hettinger2019-06-041-9/+13
* bpo-37128: Add math.perm(). (GH-13731)Serhiy Storchaka2019-06-021-1/+36
* bpo-35431: Refactor math.comb() implementation. (GH-13725)Serhiy Storchaka2019-06-011-18/+6
* bpo-35431: Implemented math.comb (GH-11414)Yash Aggarwal2019-06-011-1/+50
* bpo-36887: add math.isqrt (GH-13244)Mark Dickinson2019-05-181-1/+10
* bpo-36127: Argument Clinic: inline parsing code for keyword parameters. (GH-1...Serhiy Storchaka2019-03-141-7/+42
* bpo-35606: Implement math.prod (GH-11359)Pablo Galindo2019-02-061-1/+38
* bpo-34838: Use subclass_of for math.dist. (GH-9659)Ammar Askar2019-01-121-1/+9
* bpo-35582: Argument Clinic: Optimize the "all boring objects" case. (GH-11520)Serhiy Storchaka2019-01-111-7/+7
* bpo-35582: Argument Clinic: inline parsing code for positional parameters. (G...Serhiy Storchaka2019-01-111-7/+25
* bpo-23867: Argument Clinic: inline parsing code for a single positional param...Serhiy Storchaka2018-12-251-8/+15
* bpo-33012: Fix invalid function cast warnings with gcc 8 in Argument Clinic. ...Serhiy Storchaka2018-11-271-7/+7
* Speed-up math.dist() by 30% (GH-9628)Raymond Hettinger2018-09-291-3/+4
* bpo-33089: Add math.dist() for computing the Euclidean distance between two p...Raymond Hettinger2018-07-311-1/+36
* bpo-33089: Multidimensional math.hypot() (GH-8474)Raymond Hettinger2018-07-281-30/+1
* bpo-32240: Add the const qualifier to declarations of PyObject* array argumen...Serhiy Storchaka2017-12-151-7/+7
* bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955)Serhiy Storchaka2017-07-031-27/+7
* bpo-30600: Fix error messages (condition order in Argument Clinic) (#2051)Sylvain2017-06-101-17/+17
* Issue #29282: Backed out changeset b33012ef1417Mark Dickinson2017-01-211-35/+1
* Issue #29282: add fused multiply-add function, math.fma.Mark Dickinson2017-01-211-1/+35
* Issue #20186: Converted the math module to Argument Clinic.Serhiy Storchaka2017-01-191-0/+539