@@ -1987,13 +1987,14 @@ _decimal_Decimal_getcontext_impl(PyObject *self)
1987
1987
_decimal.Decimal.setcontext
1988
1988
1989
1989
context: object
1990
+ /
1990
1991
1991
1992
Set a new default context.
1992
1993
[clinic start generated code]*/
1993
1994
1994
1995
static PyObject *
1995
- _decimal_Decimal_setcontext_impl (PyObject * self , PyObject * context )
1996
- /*[clinic end generated code: output=28637d8482b37a71 input=d008c3c978217ccd ]*/
1996
+ _decimal_Decimal_setcontext (PyObject * self , PyObject * context )
1997
+ /*[clinic end generated code: output=20e7a377da25e02f input=4a5f0e2f660ee0e5 ]*/
1997
1998
{
1998
1999
return PyDec_SetCurrentContext (self , context );
1999
2000
}
@@ -5886,12 +5887,13 @@ _decimal_Decimal___copy___impl(PyObject *self)
5886
5887
_decimal.Decimal.__deepcopy__
5887
5888
5888
5889
memo: object
5890
+ /
5889
5891
5890
5892
[clinic start generated code]*/
5891
5893
5892
5894
static PyObject *
5893
- _decimal_Decimal___deepcopy___impl (PyObject * self , PyObject * memo )
5894
- /*[clinic end generated code: output=816138d04d950813 input=e8be5af4ad08e6cd ]*/
5895
+ _decimal_Decimal___deepcopy__ (PyObject * self , PyObject * memo )
5896
+ /*[clinic end generated code: output=988fb34e0136b376 input=f95598c6f43233aa ]*/
5895
5897
{
5896
5898
return Py_NewRef (self );
5897
5899
}
@@ -7057,14 +7059,15 @@ _decimal.Context.fma
7057
7059
x: object
7058
7060
y: object
7059
7061
z: object
7062
+ /
7060
7063
7061
7064
Return x multiplied by y, plus z.
7062
7065
[clinic start generated code]*/
7063
7066
7064
7067
static PyObject *
7065
7068
_decimal_Context_fma_impl (PyObject * self , PyObject * x , PyObject * y ,
7066
7069
PyObject * z )
7067
- /*[clinic end generated code: output=4f8c4d693c85c0c0 input=307f564c9dd2c342 ]*/
7070
+ /*[clinic end generated code: output=4f8c4d693c85c0c0 input=52cb95a6a55e7730 ]*/
7068
7071
{
7069
7072
return ctx_mpd_qfma (self , x , y , z );
7070
7073
}
0 commit comments