Skip to content

Commit e1ac18c

Browse files
committed
update generated files
1 parent 0b36750 commit e1ac18c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Objects/clinic/floatobject.c.h

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

Objects/floatobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,7 @@ Return the floor as an Integral.
931931

932932
static PyObject *
933933
float___floor___impl(PyObject *self)
934-
/*[clinic end generated code: output=e0551dbaea8c01d1 input=38c8fb1dd0b579b4]*/
934+
/*[clinic end generated code: output=e0551dbaea8c01d1 input=77bb13eb12e268df]*/
935935
{
936936
double x = PyFloat_AsDouble(self);
937937
return PyLong_FromDouble(floor(x));
@@ -945,7 +945,7 @@ Return the ceiling as an Integral.
945945

946946
static PyObject *
947947
float___ceil___impl(PyObject *self)
948-
/*[clinic end generated code: output=a2fd8858f73736f9 input=e3d4c94c2b8c8675]*/
948+
/*[clinic end generated code: output=a2fd8858f73736f9 input=79e41ae94aa0a516]*/
949949
{
950950
double x = PyFloat_AsDouble(self);
951951
return PyLong_FromDouble(ceil(x));

0 commit comments

Comments
 (0)