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

Skip to content

translated 'math.nextafter(x,y)' #1380

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 30, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions library/math.po
Original file line number Diff line number Diff line change
Expand Up @@ -372,37 +372,41 @@ msgstr ""
"le signe de *x* et sont flottants."

#: library/math.rst:234
#, fuzzy
msgid "Return the next floating-point value after *x* towards *y*."
msgstr "Renvoie la tangente de *x* radians."
msgstr ""
"Renvoie la valeur flottante consécutive à *x*, dans la direction de *y*."

#: library/math.rst:236
msgid "If *x* is equal to *y*, return *y*."
msgstr ""
msgstr "Si *x* est égal à *y*, renvoie *y*."

#: library/math.rst:238
msgid "Examples:"
msgstr ""
msgstr "Exemples :"

#: library/math.rst:240
msgid "``math.nextafter(x, math.inf)`` goes up: towards positive infinity."
msgstr ""
"``math.nextafter(x, math.inf)`` augmente de valeur : vers l'infini positif."

#: library/math.rst:241
msgid "``math.nextafter(x, -math.inf)`` goes down: towards minus infinity."
msgstr ""
"``math.nextafter(x, -math.inf)`` baisse de valeur : vers l'infini négatif."

#: library/math.rst:242
msgid "``math.nextafter(x, 0.0)`` goes towards zero."
msgstr ""
msgstr "``math.nextafter(x, 0.0)`` augmente ou baisse de valeur, vers zéro."

#: library/math.rst:243
msgid "``math.nextafter(x, math.copysign(math.inf, x))`` goes away from zero."
msgstr ""
"``math.nextafter(x, math.copysign(math.inf, x))`` augmente ou baisse de "
"valeur, en s'éloignant de zéro."

#: library/math.rst:245
msgid "See also :func:`math.ulp`."
msgstr ""
msgstr "Voir aussi : :func:`math.ulp`."

#: library/math.rst:251
msgid ""
Expand Down