1
0
Fork 0

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

This commit is contained in:
zed 2020-09-30 05:45:19 -04:00 committed by GitHub
parent f375e25ed2
commit 1175370b17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 6 deletions

View File

@ -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 ""