Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
Fix incorrect error type in math.factorial documentation (GH-133904)
  • Loading branch information
abhigyan631 committed May 12, 2025
commit 08c781a3d7f2bb2c6534e493b8198ff05ad8307d
4 changes: 2 additions & 2 deletions Doc/library/math.rst
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,8 @@ Number-theoretic functions

.. function:: factorial(n)

Return *n* factorial as an integer. Raises :exc:`ValueError` if *n* is not integral or
is negative.
Return *n* factorial as an integer. Raises :exc:`TypeError` if *n* is not an integer.
Raises :exc:`ValueError` if *n* is negative.

.. versionchanged:: 3.10
Floats with integral values (like ``5.0``) are no longer accepted.
Expand Down
3 changes: 2 additions & 1 deletion Modules/clinic/mathmodule.c.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading