summaryrefslogtreecommitdiffstats
path: root/Modules/clinic/mathmodule.c.h
Commit message (Expand)AuthorAgeFilesLines
* gh-73468: Add math.fma() function (#116667)Victor Stinner2024-03-171-1/+62
* gh-110964: Remove private _PyArg functions (#110966)Victor Stinner2023-10-171-1/+2
* gh-107603: Argument Clinic: Only include pycore_gc.h if needed (#108726)Victor Stinner2023-08-311-4/+3
* gh-94906: Support multiple steps in math.nextafter (#103881)Matthias Görgens2023-05-191-8/+47
* gh-102839: remove AC for math.log (GH-102863)Sergey B Kirpichev2023-03-211-44/+1
* Revert "gh-89381: Fix invalid signatures of math/cmath.log (#101404)" (#101580)Mark Dickinson2023-02-051-19/+25
* gh-89381: Fix invalid signatures of math/cmath.log (#101404)Sergey B Kirpichev2023-01-291-25/+19
* GH-100485: Add math.sumprod() (GH-100677)Raymond Hettinger2023-01-071-1/+38
* gh-90928: Improve static initialization of keywords tuple in AC (#95907)Erlend E. Aasland2022-08-131-35/+15
* gh-90928: Statically Initialize the Keywords Tuple in Clinic-Generated Code (...Eric Snow2022-08-111-3/+75
* gh-91320: Argument Clinic uses _PyCFunction_CAST() (#32210)Victor Stinner2022-05-031-10/+10
* Change parameter name from *x* for reals to *n* for integers. (GH-32377)Raymond Hettinger2022-04-061-3/+3
* 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-251-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-071-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