summaryrefslogtreecommitdiffstats
path: root/Doc/library/decimal.rst
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2023-10-11 21:12:36 (GMT)
committerGitHub <noreply@github.com>2023-10-11 21:12:36 (GMT)
commit7d5a9826095f4c1c8faec4a832fe4e8dfc00b224 (patch)
tree3702d3413a87c6f56a4b7e03e49236d105904164 /Doc/library/decimal.rst
parentcae968ba1708ce23760974e850a0fceee856d926 (diff)
downloadcpython-7d5a9826095f4c1c8faec4a832fe4e8dfc00b224.zip
cpython-7d5a9826095f4c1c8faec4a832fe4e8dfc00b224.tar.gz
cpython-7d5a9826095f4c1c8faec4a832fe4e8dfc00b224.tar.bz2
[3.12] gh-110631: Fix reST indentation (GH-110724) (#110738)
* Fix wrong indentation in the other dirs. * Fix more wrong indentation.. (cherry picked from commit 718391f475f2550d99dd794069ca76312f7f6aa6)
Diffstat (limited to 'Doc/library/decimal.rst')
-rw-r--r--Doc/library/decimal.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/decimal.rst b/Doc/library/decimal.rst
index 018ec1a..08bbb7f 100644
--- a/Doc/library/decimal.rst
+++ b/Doc/library/decimal.rst
@@ -1396,10 +1396,10 @@ In addition to the three supplied contexts, new contexts can be created with the
With three arguments, compute ``(x**y) % modulo``. For the three argument
form, the following restrictions on the arguments hold:
- - all three arguments must be integral
- - ``y`` must be nonnegative
- - at least one of ``x`` or ``y`` must be nonzero
- - ``modulo`` must be nonzero and have at most 'precision' digits
+ - all three arguments must be integral
+ - ``y`` must be nonnegative
+ - at least one of ``x`` or ``y`` must be nonzero
+ - ``modulo`` must be nonzero and have at most 'precision' digits
The value resulting from ``Context.power(x, y, modulo)`` is
equal to the value that would be obtained by computing ``(x**y)