Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1fff8b4

Browse files
Update regen-all
1 parent 6873347 commit 1fff8b4

File tree

2 files changed

+14
-8
lines changed

2 files changed

+14
-8
lines changed

Modules/clinic/mathmodule.c.h

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

Modules/mathmodule.c

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3865,18 +3865,19 @@ math.nextafter
38653865
y: double
38663866
/
38673867
*
3868-
steps: object = none
3868+
steps: object = None
38693869
38703870
Return the floating-point value the given number of steps after x towards y.
3871+
38713872
If steps is not specified or is None, it defaults to 1.
38723873
38733874
Raises a TypeError, if x or y is not a double, or if steps is not an integer.
38743875
Raises ValueError if steps is negative.
38753876
[clinic start generated code]*/
38763877

38773878
static PyObject *
3878-
math_nextafter_impl(PyObject *module, double x, double y, PyObject* steps)
3879-
/*[clinic end generated code: output=14190eb869199e5a input=a794e7a79768ee25]*/
3879+
math_nextafter_impl(PyObject *module, double x, double y, PyObject *steps)
3880+
/*[clinic end generated code: output=cc6511f02afc099e input=7f2a5842112af2b4]*/
38803881
{
38813882
#if defined(_AIX)
38823883
if (x == y) {

0 commit comments

Comments
 (0)