diff --git a/Lib/_pydecimal.py b/Lib/_pydecimal.py index 57d6143daea43a3..e260e512718387f 100644 --- a/Lib/_pydecimal.py +++ b/Lib/_pydecimal.py @@ -5076,8 +5076,8 @@ def number_class(self, a): """Returns an indication of the class of the operand. The class is one of the following strings: - -sNaN - -NaN + sNaN + NaN -Infinity -Normal -Subnormal @@ -5586,8 +5586,9 @@ def to_integral_value(self, a): When the operand has a negative exponent, the result is the same as using the quantize() operation using the given operand as the left-hand-operand, 1E+0 as the right-hand-operand, and the precision - of the operand as the precision setting, except that no flags will - be set. The rounding mode is taken from the context. + of the operand as the precision setting, except that the Inexact and + Rounded flags will not be set. The rounding mode is taken from the + context. >>> ExtendedContext.to_integral_value(Decimal('2.1')) Decimal('2') diff --git a/Modules/_decimal/_decimal.c b/Modules/_decimal/_decimal.c index ada9b02d690717f..b5e752cad4491aa 100644 --- a/Modules/_decimal/_decimal.c +++ b/Modules/_decimal/_decimal.c @@ -940,12 +940,12 @@ _decimal.Context.Etop Return a value equal to Emax - prec + 1. This is the maximum exponent if the _clamp field of the context is -set to 1 (IEEE clamp mode). Etop() must not be negative. +set to 1 (IEEE clamp mode). [clinic start generated code]*/ static PyObject * _decimal_Context_Etop_impl(PyObject *self) -/*[clinic end generated code: output=f0a3f6e1b829074e input=35b9defc69d5e5d1]*/ +/*[clinic end generated code: output=f0a3f6e1b829074e input=a3e53bbf31ffd330]*/ { return PyLong_FromSsize_t(mpd_etop(CTX(self))); } @@ -6785,7 +6785,7 @@ _decimal.Context.power Compute a**b. If 'a' is negative, then 'b' must be integral. The result will be -inexact unless 'a' is integral and the result is finite and can be +inexact unless 'b' is integral and the result is finite and can be expressed exactly in 'precision' digits. In the Python version the result is always correctly rounded, in the C version the result is almost always correctly rounded. @@ -6803,7 +6803,7 @@ restrictions hold: static PyObject * _decimal_Context_power_impl(PyObject *context, PyTypeObject *cls, PyObject *base, PyObject *exp, PyObject *mod) -/*[clinic end generated code: output=d06d40c37cdd69dc input=178a254468ec189b]*/ +/*[clinic end generated code: output=d06d40c37cdd69dc input=660210a6607ca4b0]*/ { PyObject *a, *b, *c = NULL; PyObject *result; @@ -7063,13 +7063,13 @@ _decimal_Context_apply_impl(PyObject *context, PyTypeObject *cls, /*[clinic input] _decimal.Context.canonical = _decimal.Context.is_normal -Return a new instance of x. +Return x unchanged. [clinic start generated code]*/ static PyObject * _decimal_Context_canonical_impl(PyObject *context, PyTypeObject *cls, PyObject *x) -/*[clinic end generated code: output=f213e433e2032e5e input=025ecb106ac15bff]*/ +/*[clinic end generated code: output=f213e433e2032e5e input=f8fd49573263a2b6]*/ { decimal_state *state = PyType_GetModuleState(cls); if (!PyDec_Check(state, x)) { diff --git a/Modules/_decimal/clinic/_decimal.c.h b/Modules/_decimal/clinic/_decimal.c.h index 8ad883d8a2d14dc..53d4ab59f53470f 100644 --- a/Modules/_decimal/clinic/_decimal.c.h +++ b/Modules/_decimal/clinic/_decimal.c.h @@ -37,7 +37,7 @@ PyDoc_STRVAR(_decimal_Context_Etop__doc__, "Return a value equal to Emax - prec + 1.\n" "\n" "This is the maximum exponent if the _clamp field of the context is\n" -"set to 1 (IEEE clamp mode). Etop() must not be negative."); +"set to 1 (IEEE clamp mode)."); #define _DECIMAL_CONTEXT_ETOP_METHODDEF \ {"Etop", (PyCFunction)_decimal_Context_Etop, METH_NOARGS, _decimal_Context_Etop__doc__}, @@ -5444,7 +5444,7 @@ PyDoc_STRVAR(_decimal_Context_power__doc__, "Compute a**b.\n" "\n" "If \'a\' is negative, then \'b\' must be integral. The result will be\n" -"inexact unless \'a\' is integral and the result is finite and can be\n" +"inexact unless \'b\' is integral and the result is finite and can be\n" "expressed exactly in \'precision\' digits. In the Python version the\n" "result is always correctly rounded, in the C version the result is\n" "almost always correctly rounded.\n" @@ -6139,7 +6139,7 @@ PyDoc_STRVAR(_decimal_Context_canonical__doc__, "canonical($self, x, /)\n" "--\n" "\n" -"Return a new instance of x."); +"Return x unchanged."); #define _DECIMAL_CONTEXT_CANONICAL_METHODDEF \ {"canonical", _PyCFunction_CAST(_decimal_Context_canonical), METH_METHOD|METH_FASTCALL|METH_KEYWORDS, _decimal_Context_canonical__doc__}, @@ -7100,4 +7100,4 @@ _decimal_Context_same_quantum(PyObject *context, PyTypeObject *cls, PyObject *co #ifndef _DECIMAL_CONTEXT_APPLY_METHODDEF #define _DECIMAL_CONTEXT_APPLY_METHODDEF #endif /* !defined(_DECIMAL_CONTEXT_APPLY_METHODDEF) */ -/*[clinic end generated code: output=718b1f6c20412350 input=a9049054013a1b77]*/ +/*[clinic end generated code: output=98b3741f9f7a95fd input=a9049054013a1b77]*/