Skip to content

Commit 8137058

Browse files
Update clinic.
1 parent 59b1be1 commit 8137058

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

Doc/library/intmath.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
:mod:`intmath` --- integer-specific mathematics functions
2-
=============================================================
2+
=========================================================
33

44
.. module:: intmath
55
:synopsis: Integer-specific mathematics functions.

Modules/clinic/intmathmodule.c.h

Lines changed: 2 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Modules/intmathmodule.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ Find n!.
685685

686686
static PyObject *
687687
intmath_factorial(PyObject *module, PyObject *arg)
688-
/*[clinic end generated code: output=9a6c770c0b2a3603 input=d7d0785afa52dbd1]*/
688+
/*[clinic end generated code: output=9a6c770c0b2a3603 input=3861cbcc5842057f]*/
689689
{
690690
long x, two_valuation;
691691
int overflow;
@@ -1034,7 +1034,7 @@ Raises ValueError if either of the arguments are negative.
10341034

10351035
static PyObject *
10361036
intmath_perm_impl(PyObject *module, PyObject *n, PyObject *k)
1037-
/*[clinic end generated code: output=2293544c3bed417c input=6f27d76ca7e769fe]*/
1037+
/*[clinic end generated code: output=2293544c3bed417c input=f9637e7171c40bec]*/
10381038
{
10391039
PyObject *result = NULL;
10401040
int overflow, cmp;
@@ -1128,7 +1128,7 @@ Raises ValueError if either of the arguments are negative.
11281128

11291129
static PyObject *
11301130
intmath_comb_impl(PyObject *module, PyObject *n, PyObject *k)
1131-
/*[clinic end generated code: output=0182ad8aadc2d30a input=99746dbf70d1f992]*/
1131+
/*[clinic end generated code: output=0182ad8aadc2d30a input=afe1bf86859c5c13]*/
11321132
{
11331133
PyObject *result = NULL, *temp;
11341134
int overflow, cmp;

0 commit comments

Comments
 (0)