diff options
author | Matthias Görgens <matthias.goergens@gmail.com> | 2023-05-19 20:03:49 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-19 20:03:49 (GMT) |
commit | 6e39fa19555043588910d10f1fe677cf6b04d77e (patch) | |
tree | 04f9df16fd8871323c195e79f2afc251c2882410 /Include/internal/pycore_runtime_init_generated.h | |
parent | c3f43bfb4bec39ff8f2c36d861a3c3a243bcb3af (diff) | |
download | cpython-6e39fa19555043588910d10f1fe677cf6b04d77e.zip cpython-6e39fa19555043588910d10f1fe677cf6b04d77e.tar.gz cpython-6e39fa19555043588910d10f1fe677cf6b04d77e.tar.bz2 |
gh-94906: Support multiple steps in math.nextafter (#103881)
This PR updates `math.nextafter` to add a new `steps` argument. The behaviour is as though `math.nextafter` had been called `steps` times in succession.
---------
Co-authored-by: Mark Dickinson <mdickinson@enthought.com>
Diffstat (limited to 'Include/internal/pycore_runtime_init_generated.h')
-rw-r--r-- | Include/internal/pycore_runtime_init_generated.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/internal/pycore_runtime_init_generated.h b/Include/internal/pycore_runtime_init_generated.h index 0cb24a9..3edf076 100644 --- a/Include/internal/pycore_runtime_init_generated.h +++ b/Include/internal/pycore_runtime_init_generated.h @@ -1187,6 +1187,7 @@ extern "C" { INIT_ID(stdin), \ INIT_ID(stdout), \ INIT_ID(step), \ + INIT_ID(steps), \ INIT_ID(store_name), \ INIT_ID(strategy), \ INIT_ID(strftime), \ |