@@ -6,8 +6,8 @@ msgstr ""
66"Project-Id-Version : Python 3.6\n "
77"Report-Msgid-Bugs-To : \n "
88"POT-Creation-Date : 2017-04-02 22:11+0200\n "
9- "PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE \n "
10- "Last-Translator : FULL NAME <EMAIL@ADDRESS >\n "
9+ "PO-Revision-Date : 2019-01-14 15:30+0100 \n "
10+ "Last-Translator : ANTOINE FOURES <afoures@student.42.fr >\n "
1111"Language-Team : FRENCH <traductions@lists.afpy.org>\n "
1212"Language : fr\n "
1313"MIME-Version : 1.0\n "
@@ -16,76 +16,106 @@ msgstr ""
1616
1717#: ../Doc/c-api/float.rst:6
1818msgid "Floating Point Objects"
19- msgstr ""
19+ msgstr "Objets représentant les nombres à virgule flottante "
2020
2121#: ../Doc/c-api/float.rst:13
2222msgid ""
2323"This subtype of :c:type:`PyObject` represents a Python floating point object."
2424msgstr ""
25+ "Ce sous-type de l'objet :c:type:`PyObject` représente un nombre à virgule "
26+ "flottante en Python."
2527
2628#: ../Doc/c-api/float.rst:18
2729msgid ""
2830"This instance of :c:type:`PyTypeObject` represents the Python floating point "
2931"type. This is the same object as :class:`float` in the Python layer."
3032msgstr ""
33+ "Cette instance de l'objet :c:type:`PyTypeObject` représente le type nombre à "
34+ "virgule flottante en Python. C'est le même objet que la classe :class:"
35+ "`float` de la couche Python."
3136
3237#: ../Doc/c-api/float.rst:24
3338msgid ""
34- "Return true if its argument is a :c:type:`PyFloatObject` or a subtype of :c:"
39+ "Return true if its argument is a :c:type:`PyFloatObject` or a subtype of :c:"
3540"type:`PyFloatObject`."
3641msgstr ""
42+ "Renvoie vrai si l'argument est de type :c:type:`PyFloatObject` ou un sous-"
43+ "type de :c:type:`PyFloatObject`."
3744
3845#: ../Doc/c-api/float.rst:30
3946msgid ""
4047"Return true if its argument is a :c:type:`PyFloatObject`, but not a subtype "
4148"of :c:type:`PyFloatObject`."
4249msgstr ""
50+ "Renvoie vrai si l'argument est de type :c:type:`PyFloatObject`, mais pas un "
51+ "sous-type de :c:type:`PyFloatObject`."
4352
4453#: ../Doc/c-api/float.rst:36
4554msgid ""
4655"Create a :c:type:`PyFloatObject` object based on the string value in *str*, "
4756"or *NULL* on failure."
4857msgstr ""
58+ "Crée un objet :c:type:`PyFloatObject` à partir de la valeur de la chaîne de "
59+ "caractères *str*, ou *NULL* en cas d'échec."
4960
5061#: ../Doc/c-api/float.rst:42
5162msgid "Create a :c:type:`PyFloatObject` object from *v*, or *NULL* on failure."
5263msgstr ""
64+ "Crée un objet :c:type:`PyFloatObject` à partir de *v*, ou *NULL* en cas "
65+ "d'échec."
5366
5467#: ../Doc/c-api/float.rst:47
5568msgid ""
5669"Return a C :c:type:`double` representation of the contents of *pyfloat*. If "
5770"*pyfloat* is not a Python floating point object but has a :meth:`__float__` "
5871"method, this method will first be called to convert *pyfloat* into a float. "
59- "This method returns ``-1.0`` upon failure, so one should call :c:func:"
72+ "This method returns ``-1.0`` upon failure, so one should call :c:func:"
6073"`PyErr_Occurred` to check for errors."
6174msgstr ""
75+ "Renvoie une représentation du contenu d'un *pyfloat* sous la forme d'un :c:"
76+ "type:`double` en C. Si le *pyfloat* n'est pas un nombre à virgule flottante "
77+ "mais contient une méthode :meth:`__float__`, elle est d'abord appelée pour "
78+ "convertir le *pyfloat* en nombre à virgule flottante. Cette méthode renvoie "
79+ "``-1.0`` en cas d'échec, il faut appeler :c:func:`PyErr_Occurred` pour "
80+ "vérifier les erreurs."
6281
6382#: ../Doc/c-api/float.rst:56
6483msgid ""
6584"Return a C :c:type:`double` representation of the contents of *pyfloat*, but "
6685"without error checking."
6786msgstr ""
87+ "Renvoie une représentation du contenu d'un *pyfloat* sous la forme d'un :c:"
88+ "type:`double` en C, sans vérifier les erreurs."
6889
6990#: ../Doc/c-api/float.rst:62
7091msgid ""
7192"Return a structseq instance which contains information about the precision, "
7293"minimum and maximum values of a float. It's a thin wrapper around the header "
7394"file :file:`float.h`."
7495msgstr ""
96+ "Renvoie une instance *structseq* qui contient les informations sur la "
97+ "précision et les valeurs minimales et maximales pour un nombre à virgule "
98+ "flottante. C'est une enveloppe autour du fichier d'entête :file:`float.h`."
7599
76100#: ../Doc/c-api/float.rst:69
77101msgid ""
78102"Return the maximum representable finite float *DBL_MAX* as C :c:type:"
79103"`double`."
80104msgstr ""
105+ "Renvoie le nombre à virgule flottante fini maximal *DBL_MAX* sous la forme "
106+ "d'un :c:type:`double` en C."
81107
82108#: ../Doc/c-api/float.rst:74
83109msgid ""
84110"Return the minimum normalized positive float *DBL_MIN* as C :c:type:`double`."
85111msgstr ""
112+ "Renvoie le nombre à virgule flottante minimal normalisé *DBL_MIN* sous la "
113+ "forme :c:type:`double` en C."
86114
87115#: ../Doc/c-api/float.rst:78
88116msgid ""
89117"Clear the float free list. Return the number of items that could not be "
90118"freed."
91119msgstr ""
120+ "Libère la mémoire de la *free list* des nombres à virgule flottante. Renvoie "
121+ "le nombre d'éléments qui n'ont pas pu être libérés."
0 commit comments