@@ -922,7 +922,7 @@ Set state information for unpickling.
922922
923923static PyObject *
924924range_iterator___setstate___impl (_PyRangeIterObject * self , PyObject * state )
925- /*[clinic end generated code: output=8c0cbca5b07a30a3 input=acd092f19666fd2e ]*/
925+ /*[clinic end generated code: output=8c0cbca5b07a30a3 input=230f74fae1cb5008 ]*/
926926{
927927 long index = PyLong_AsLong (state );
928928 if (index == -1 && PyErr_Occurred ())
@@ -1040,7 +1040,7 @@ Private method returning an estimate of len(list(it)).
10401040
10411041static PyObject *
10421042longrange_iterator___length_hint___impl (longrangeiterobject * self )
1043- /*[clinic end generated code: output=1890e941c1688fcd input=0dd7a785a3ee9e9a ]*/
1043+ /*[clinic end generated code: output=1890e941c1688fcd input=eef1908ae4759fb2 ]*/
10441044{
10451045 Py_INCREF (self -> len );
10461046 return self -> len ;
@@ -1055,7 +1055,7 @@ Return state information for pickling.
10551055
10561056static PyObject *
10571057longrange_iterator___reduce___impl (longrangeiterobject * self )
1058- /*[clinic end generated code: output=6efcfea6587678cd input=f73e1a6449166649 ]*/
1058+ /*[clinic end generated code: output=6efcfea6587678cd input=21302109df76aac9 ]*/
10591059{
10601060 PyObject * product , * stop = NULL ;
10611061 PyObject * range ;
@@ -1095,7 +1095,7 @@ Set state information for unpickling.
10951095static PyObject *
10961096longrange_iterator___setstate___impl (longrangeiterobject * self ,
10971097 PyObject * state )
1098- /*[clinic end generated code: output=0ad8528a4b723cd0 input=84c0bb455543ee24 ]*/
1098+ /*[clinic end generated code: output=0ad8528a4b723cd0 input=7304c65ba48035ea ]*/
10991099{
11001100 if (!PyLong_CheckExact (state )) {
11011101 PyErr_Format (PyExc_TypeError , "state must be an int, not %T" , state );
0 commit comments