You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: c-api/float.po
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -16,40 +16,40 @@ msgstr ""
16
16
17
17
#:../Doc/c-api/float.rst:6
18
18
msgid"Floating Point Objects"
19
-
msgstr""
19
+
msgstr"Objets Nombres à Virgule Flottante"
20
20
21
21
#:../Doc/c-api/float.rst:13
22
22
msgid""
23
23
"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"
25
25
26
26
#:../Doc/c-api/float.rst:18
27
27
msgid""
28
28
"This instance of :c:type:`PyTypeObject` represents the Python floating point "
29
29
"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."
31
31
32
32
#:../Doc/c-api/float.rst:24
33
33
msgid""
34
34
"Return true if its argument is a :c:type:`PyFloatObject` or a subtype of :c:"
35
35
"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`."
37
37
38
38
#:../Doc/c-api/float.rst:30
39
39
msgid""
40
40
"Return true if its argument is a :c:type:`PyFloatObject`, but not a subtype "
41
41
"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`."
43
43
44
44
#:../Doc/c-api/float.rst:36
45
45
msgid""
46
46
"Create a :c:type:`PyFloatObject` object based on the string value in *str*, "
47
47
"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."
49
49
50
50
#:../Doc/c-api/float.rst:42
51
51
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."
53
53
54
54
#:../Doc/c-api/float.rst:47
55
55
msgid""
@@ -58,34 +58,34 @@ msgid ""
58
58
"method, this method will first be called to convert *pyfloat* into a float. "
59
59
"This method returns ``-1.0`` upon failure, so one should call :c:func:"
60
60
"`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."
62
62
63
63
#:../Doc/c-api/float.rst:56
64
64
msgid""
65
65
"Return a C :c:type:`double` representation of the contents of *pyfloat*, but "
66
66
"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."
68
68
69
69
#:../Doc/c-api/float.rst:62
70
70
msgid""
71
71
"Return a structseq instance which contains information about the precision, "
72
72
"minimum and maximum values of a float. It's a thin wrapper around the header "
73
73
"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`."
75
75
76
76
#:../Doc/c-api/float.rst:69
77
77
msgid""
78
78
"Return the maximum representable finite float *DBL_MAX* as C :c:type:"
79
79
"`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."
81
81
82
82
#:../Doc/c-api/float.rst:74
83
83
msgid""
84
84
"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."
86
86
87
87
#:../Doc/c-api/float.rst:78
88
88
msgid""
89
89
"Clear the float free list. Return the number of items that could not be "
90
90
"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