Skip to content

Commit 9b954ff

Browse files
author
afoures
committed
float.po done
1 parent 5ca8582 commit 9b954ff

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

c-api/float.po

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,40 +16,40 @@ msgstr ""
1616

1717
#: ../Doc/c-api/float.rst:6
1818
msgid "Floating Point Objects"
19-
msgstr ""
19+
msgstr "Objets Nombres à Virgule Flottante"
2020

2121
#: ../Doc/c-api/float.rst:13
2222
msgid ""
2323
"This subtype of :c:type:`PyObject` represents a Python floating point object."
24-
msgstr ""
24+
msgstr "Ce sous-type de l'objet :c:type:`PyObject` représente un objet d'un nombre à virgule flottante en Python"
2525

2626
#: ../Doc/c-api/float.rst:18
2727
msgid ""
2828
"This instance of :c:type:`PyTypeObject` represents the Python floating point "
2929
"type. This is the same object as :class:`float` in the Python layer."
30-
msgstr ""
30+
msgstr "Cette instance de l'objet :c:type:`PyTypeObject représente le type nombre à virgule flottante en Python. C'est le même objet que la class :class:`float` de la couche Python."
3131

3232
#: ../Doc/c-api/float.rst:24
3333
msgid ""
3434
"Return true if its argument is a :c:type:`PyFloatObject` or a subtype of :c:"
3535
"type:`PyFloatObject`."
36-
msgstr ""
36+
msgstr "Renvoie vrai dans le cas ou l'argument est de type :c:type:`PyFloatObject` ou un sous-type de :c:type:`PyFloatObject`."
3737

3838
#: ../Doc/c-api/float.rst:30
3939
msgid ""
4040
"Return true if its argument is a :c:type:`PyFloatObject`, but not a subtype "
4141
"of :c:type:`PyFloatObject`."
42-
msgstr ""
42+
msgstr "Renvoie vrai dans le cas ou l'argument est de type :c:type:`PyFloatObject`, mais pas un sous-type de :c:type:`PyFloatObject`."
4343

4444
#: ../Doc/c-api/float.rst:36
4545
msgid ""
4646
"Create a :c:type:`PyFloatObject` object based on the string value in *str*, "
4747
"or *NULL* on failure."
48-
msgstr ""
48+
msgstr "Créer un objet :c:type:PyFloatObject à partir de la valeur de la chaine de charactères *str*, ou *NULL* en cas d'échec."
4949

5050
#: ../Doc/c-api/float.rst:42
5151
msgid "Create a :c:type:`PyFloatObject` object from *v*, or *NULL* on failure."
52-
msgstr ""
52+
msgstr "Créer un objet :c:type:`PyFloatObject` à partir de *v*, ou *NULL* en cas d'échec."
5353

5454
#: ../Doc/c-api/float.rst:47
5555
msgid ""
@@ -58,34 +58,34 @@ msgid ""
5858
"method, this method will first be called to convert *pyfloat* into a float. "
5959
"This method returns ``-1.0`` upon failure, so one should call :c:func:"
6060
"`PyErr_Occurred` to check for errors."
61-
msgstr ""
61+
msgstr "Renvoie une représentation du contenu d'un *pyfloat* sous la forme d'un :c:type:`double` en C. Si le *pyfloat* n'est pas un nombre à virgule flottante mais contient une méthode :meth:`__float__`, elle sera d'abbord appelée pour convertir le *pyfloat* en nombre à virgule flottante. Cette méthode renvoie ``-1.0`` en cas d'échec, il faut appeler :c:func:`PyErr_Occurred` pour vérifier les erreurs."
6262

6363
#: ../Doc/c-api/float.rst:56
6464
msgid ""
6565
"Return a C :c:type:`double` representation of the contents of *pyfloat*, but "
6666
"without error checking."
67-
msgstr ""
67+
msgstr "Renvoie une représentation du contenu d'un *pyfloat* sous la forme d'un :c:type:`double` en C, sans vérifier les erreurs."
6868

6969
#: ../Doc/c-api/float.rst:62
7070
msgid ""
7171
"Return a structseq instance which contains information about the precision, "
7272
"minimum and maximum values of a float. It's a thin wrapper around the header "
7373
"file :file:`float.h`."
74-
msgstr ""
74+
msgstr "Renvoie une instance *structseq* qui contient les informations de la précision minimale et maximale pour un nombre à virgule flottante. C'est une enveloppe autour du fichier d'entête :file:`float.h`."
7575

7676
#: ../Doc/c-api/float.rst:69
7777
msgid ""
7878
"Return the maximum representable finite float *DBL_MAX* as C :c:type:"
7979
"`double`."
80-
msgstr ""
80+
msgstr "Renvoie la representation finie maximale du nombre à virgule flottante *DBL_MAX* sous la forme d'un :c:type:`double` en C."
8181

8282
#: ../Doc/c-api/float.rst:74
8383
msgid ""
8484
"Return the minimum normalized positive float *DBL_MIN* as C :c:type:`double`."
85-
msgstr ""
85+
msgstr "Renvoie la représentation normalizée minimale du nombre à virgule flottante *DBL_MIN* sous la forme :c:type:`double` en C."
8686

8787
#: ../Doc/c-api/float.rst:78
8888
msgid ""
8989
"Clear the float free list. Return the number of items that could not be "
9090
"freed."
91-
msgstr ""
91+
msgstr "Libère la mémoire de la *free list* des nombres à virgule flottante. Renvoie le nombre d'éléments dont la mémoire n'a pas pas pu être libérée."

0 commit comments

Comments
 (0)