@@ -6,8 +6,8 @@ msgstr ""
6
6
"Project-Id-Version : Python 3.6\n "
7
7
"Report-Msgid-Bugs-To : \n "
8
8
"POT-Creation-Date : 2017-09-21 09:15+0200\n "
9
- "PO-Revision-Date : 2018-02-15 00 :31+0100\n "
10
- "Last-Translator : \n "
9
+ "PO-Revision-Date : 2019-01-14 20 :31+0100\n "
10
+ "
Last-Translator :
ANTOINE FOURES <[email protected] > \n"
11
11
"
Language-Team :
FRENCH <[email protected] >\n "
12
12
"Language : fr\n "
13
13
"MIME-Version : 1.0\n "
@@ -17,7 +17,7 @@ msgstr ""
17
17
18
18
#: ../Doc/c-api/complex.rst:6
19
19
msgid "Complex Number Objects"
20
- msgstr "Objets nombres complexes"
20
+ msgstr "Objets représentant des nombres complexes"
21
21
22
22
#: ../Doc/c-api/complex.rst:10
23
23
msgid ""
@@ -26,10 +26,10 @@ msgid ""
26
26
"and the other is a C structure which represents the actual complex number "
27
27
"value. The API provides functions for working with both."
28
28
msgstr ""
29
- "Les objets Python nombres complexes sont implémentés comme deux types "
30
- "distincts, lorsqu'ils sont vus de l'API C : l'un est l'objet Python tel "
31
- "qu'il est vu par les programmes Python, et l'autre est une structure C qui "
32
- "représente la valeur complexe courante . L'API fournit des fonctions pour "
29
+ "Les nombres complexes Python sont implémentés comme deux types distincts, "
30
+ "lorsqu'ils sont vus de l'API C : l'un est l'objet Python tel qu'il est vu "
31
+ "par les programmes Python, et l'autre est une structure C qui représente la "
32
+ "valeur exacte du nombre complexe . L'API fournit des fonctions pour "
33
33
"travailler avec ces deux représentations."
34
34
35
35
#: ../Doc/c-api/complex.rst:17
@@ -42,9 +42,9 @@ msgid ""
42
42
"return them as results do so *by value* rather than dereferencing them "
43
43
"through pointers. This is consistent throughout the API."
44
44
msgstr ""
45
- "Remarquez que les fonctions qui acceptent ces structures comme paramètres et "
46
- "les renvoient comme résultats le font *par valeur* au lieur de les dé-"
47
- "référencer en utilisant des pointeurs. Cela est constant dans toute l'API."
45
+ "Les fonctions qui acceptent ces structures comme paramètres et les renvoient "
46
+ "comme résultats le font en fonction de leur * valeur* au lieu de les dé-"
47
+ "référencer en utilisant des pointeurs. C' est constant dans toute l'API."
48
48
49
49
#: ../Doc/c-api/complex.rst:26
50
50
msgid ""
@@ -53,54 +53,73 @@ msgid ""
53
53
"objects use structures of this type as input or output values, as "
54
54
"appropriate. It is defined as::"
55
55
msgstr ""
56
+ "Structure C représentant la valeur d'un nombre complexe Python. La majorité "
57
+ "des fonctions qui traitent des nombres complexes utilisent cette structure "
58
+ "en entrée ou en sortie, selon le cas. Elle est définie par ::"
56
59
57
60
#: ../Doc/c-api/complex.rst:39
58
61
msgid ""
59
62
"Return the sum of two complex numbers, using the C :c:type:`Py_complex` "
60
63
"representation."
61
64
msgstr ""
65
+ "Renvoie la somme de deux nombres complexes, sous la forme d'un :c:type:"
66
+ "`Py_complex` en C."
62
67
63
68
#: ../Doc/c-api/complex.rst:45
64
69
msgid ""
65
70
"Return the difference between two complex numbers, using the C :c:type:"
66
71
"`Py_complex` representation."
67
72
msgstr ""
73
+ "Renvoie la différence de deux nombres complexes, sous la forme d'un :c:type:"
74
+ "`Py_complex` en C."
68
75
69
76
#: ../Doc/c-api/complex.rst:51
70
77
msgid ""
71
78
"Return the negation of the complex number *complex*, using the C :c:type:"
72
79
"`Py_complex` representation."
73
80
msgstr ""
81
+ "Renvoie l'opposé du nombre complexe *complex*, sous la forme d'un :c:type:"
82
+ "`Py_complex` en C."
74
83
75
84
#: ../Doc/c-api/complex.rst:57
76
85
msgid ""
77
86
"Return the product of two complex numbers, using the C :c:type:`Py_complex` "
78
87
"representation."
79
88
msgstr ""
89
+ "Renvoie le produit de deux nombres complexes, sous la forme d'un :c:type:"
90
+ "`Py_complex` en C."
80
91
81
92
#: ../Doc/c-api/complex.rst:63
82
93
msgid ""
83
94
"Return the quotient of two complex numbers, using the C :c:type:`Py_complex` "
84
95
"representation."
85
96
msgstr ""
97
+ "Renvoie le quotient de deux nombres complexes, sous la forme d'un :c:type:"
98
+ "`Py_complex` en C."
86
99
87
100
#: ../Doc/c-api/complex.rst:66
88
101
msgid ""
89
102
"If *divisor* is null, this method returns zero and sets :c:data:`errno` to :"
90
103
"c:data:`EDOM`."
91
104
msgstr ""
105
+ "Si *divisor* est nul, cette méthode renvoie zéro et assigne :c:data:`EDOM` "
106
+ "à :c:data:`errno`."
92
107
93
108
#: ../Doc/c-api/complex.rst:72
94
109
msgid ""
95
110
"Return the exponentiation of *num* by *exp*, using the C :c:type:"
96
111
"`Py_complex` representation."
97
112
msgstr ""
113
+ "Renvoie *num* à la puissance *exp*, sous la forme d'un :c:type:`Py_complex` "
114
+ "en C."
98
115
99
116
#: ../Doc/c-api/complex.rst:75
100
117
msgid ""
101
118
"If *num* is null and *exp* is not a positive real number, this method "
102
119
"returns zero and sets :c:data:`errno` to :c:data:`EDOM`."
103
120
msgstr ""
121
+ "Si *num* est nul et *exp* n'est pas un nombre réel positif, cette méthode "
122
+ "renvoie zéro et assigne :c:data:`EDOM` à :c:data:`errno`."
104
123
105
124
#: ../Doc/c-api/complex.rst:80
106
125
msgid "Complex Numbers as Python Objects"
@@ -110,50 +129,72 @@ msgstr "Nombres complexes en tant qu'objets Python"
110
129
msgid ""
111
130
"This subtype of :c:type:`PyObject` represents a Python complex number object."
112
131
msgstr ""
132
+ "Ce sous-type de l'objet :c:type:`PyObject` représente un nombre complexe en "
133
+ "Python."
113
134
114
135
#: ../Doc/c-api/complex.rst:90
115
136
msgid ""
116
137
"This instance of :c:type:`PyTypeObject` represents the Python complex number "
117
138
"type. It is the same object as :class:`complex` in the Python layer."
118
139
msgstr ""
140
+ "Cette instance de :c:type:`PyTypeObject` représente le type nombre complexe "
141
+ "Python. C'est le même objet que la classe :class:`complex` de la couche "
142
+ "Python."
119
143
120
144
#: ../Doc/c-api/complex.rst:96
121
145
msgid ""
122
146
"Return true if its argument is a :c:type:`PyComplexObject` or a subtype of :"
123
147
"c:type:`PyComplexObject`."
124
148
msgstr ""
149
+ "Renvoie vrai si l'argument est de type :c:type:`PyComplexObject` ou un sous-"
150
+ "type de :c:type:`PyComplexObject`."
125
151
126
152
#: ../Doc/c-api/complex.rst:102
127
153
msgid ""
128
154
"Return true if its argument is a :c:type:`PyComplexObject`, but not a "
129
155
"subtype of :c:type:`PyComplexObject`."
130
156
msgstr ""
157
+ "Renvoie vrai si l'argument est de type :c:type:`PyComplexObject`, mais pas "
158
+ "un sous-type de :c:type:`PyComplexObject`."
131
159
132
160
#: ../Doc/c-api/complex.rst:108
133
161
msgid ""
134
162
"Create a new Python complex number object from a C :c:type:`Py_complex` "
135
163
"value."
136
164
msgstr ""
165
+ "Crée un nouveau nombre complexe à partir de la valeur d'un :c:type:"
166
+ "`Py_complex` en C."
137
167
138
168
#: ../Doc/c-api/complex.rst:113
139
169
msgid "Return a new :c:type:`PyComplexObject` object from *real* and *imag*."
140
170
msgstr ""
171
+ "Renvoie un nouveau :c:type:`PyComplexObject` à partir de *real* et de *imag*."
141
172
142
173
#: ../Doc/c-api/complex.rst:118
143
174
msgid "Return the real part of *op* as a C :c:type:`double`."
144
175
msgstr ""
176
+ "Renvoie la partie réelle du nombre complexe *op* sous la forme d'un :c:type:"
177
+ "`double` en C."
145
178
146
179
#: ../Doc/c-api/complex.rst:123
147
180
msgid "Return the imaginary part of *op* as a C :c:type:`double`."
148
181
msgstr ""
182
+ "Renvoie la partie imaginaire du nombre complexe *op* sous la forme d'un :c:"
183
+ "type:`double` en C."
149
184
150
185
#: ../Doc/c-api/complex.rst:128
151
186
msgid "Return the :c:type:`Py_complex` value of the complex number *op*."
152
187
msgstr ""
188
+ "Renvoie la valeur du nombre complexe *op* sous la forme d'un :c:type:"
189
+ "`Py_complex` en C."
153
190
154
191
#: ../Doc/c-api/complex.rst:130
155
192
msgid ""
156
193
"If *op* is not a Python complex number object but has a :meth:`__complex__` "
157
194
"method, this method will first be called to convert *op* to a Python complex "
158
195
"number object. Upon failure, this method returns ``-1.0`` as a real value."
159
196
msgstr ""
197
+ "Si *op* n'est pas un nombre complexe Python mais a une méthode :meth:"
198
+ "`__complex__`, cette méthode est d'abord appelée pour convertir *op* en "
199
+ "nombre complexe Python. En cas d'échec, cette méthode renvoie ``-1.0`` en "
200
+ "tant que nombre réel."
0 commit comments