]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] Fix typos in `Lib/_pydecimal.py` (GH-127700) (#127888)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 12 Dec 2024 20:45:20 +0000 (21:45 +0100)
committerGitHub <noreply@github.com>
Thu, 12 Dec 2024 20:45:20 +0000 (20:45 +0000)
Fix typos in `Lib/_pydecimal.py` (GH-127700)
(cherry picked from commit ed037d229f64db90aea00f397e9ce1b2f4a22d3f)

Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Lib/_pydecimal.py

index 75df3db262470b7f6555606c38796b778926abaa..ff80180a79e97a138d0ffb1369437dc84d152c15 100644 (file)
@@ -97,7 +97,7 @@ class DecimalException(ArithmeticError):
 
     Used exceptions derive from this.
     If an exception derives from another exception besides this (such as
-    Underflow (Inexact, Rounded, Subnormal) that indicates that it is only
+    Underflow (Inexact, Rounded, Subnormal)) that indicates that it is only
     called if the others are present.  This isn't actually used for
     anything, though.
 
@@ -145,7 +145,7 @@ class InvalidOperation(DecimalException):
     x ** (+-)INF
     An operand is invalid
 
-    The result of the operation after these is a quiet positive NaN,
+    The result of the operation after this is a quiet positive NaN,
     except when the cause is a signaling NaN, in which case the result is
     also a quiet NaN, but with the original sign, and an optional
     diagnostic information.