Skip to content

Commit 3287a20

Browse files
committed
Update generated clinic files
1 parent 366d88c commit 3287a20

File tree

2 files changed

+23
-7
lines changed

2 files changed

+23
-7
lines changed

Objects/clinic/rangeobject.c.h

Lines changed: 19 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Objects/rangeobject.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -922,7 +922,7 @@ Set state information for unpickling.
922922

923923
static PyObject *
924924
range_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

10411041
static PyObject *
10421042
longrange_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

10561056
static PyObject *
10571057
longrange_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.
10951095
static PyObject *
10961096
longrange_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

Comments
 (0)