8000 gh-101100: Fix Sphinx warnings in `decimal` module by hugovk · Pull Request #102125 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-101100: Fix Sphinx warnings in decimal module #102125

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Feb 25, 2023
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
Retain warning to undocumented Emax
  • Loading branch information
hugovk committed Feb 22, 2023
commit b0c62ae5ef3abd117261d1950852700023fb4555
2 changes: 1 addition & 1 deletion Doc/library/decimal.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1619,7 +1619,7 @@ condition.

Numerical overflow.

Indicates the exponent is larger than :attr:`!Emax` after rounding has
Indicates the exponent is larger than :attr:`Emax` after rounding has
occurred. If not trapped, the result depends on the rounding mode, either
pulling inward to the largest representable finite number or rounding outward
to ``Infinity``. In either case, :class:`Inexact` and :class:`Rounded`
Expand Down
0