Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix math.factorial documentation
  • Loading branch information
mkaraev committed May 12, 2025
commit acdd82f343aaf1e441458435d6a14b91c20409a5
3 changes: 1 addition & 2 deletions Modules/mathmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -2008,12 +2008,11 @@ math.factorial
/

Find n!.

[clinic start generated code]*/

static PyObject *
math_factorial(PyObject *module, PyObject *arg)
/*[clinic end generated code: output=6686f26fae00e9ca input=06200bf38384f7ae]*/
/*[clinic end generated code: output=6686f26fae00e9ca input=366cc321df3d4773]*/
{
long x, two_valuation;
int overflow;
Expand Down
Loading