@@ -6,13 +6,14 @@ msgstr ""
6
6
"Project-Id-Version : Python 3.6\n "
7
7
"Report-Msgid-Bugs-To : \n "
8
8
"POT-Creation-Date : 2018-06-28 15:29+0200\n "
9
- "PO-Revision-Date : 2018-07-05 11:18+0200\n "
10
- "Last-Translator : FULL NAME <EMAIL@ADDRESS>\n "
9
+ "PO-Revision-Date : 2019-02-26 09:28+0100\n "
11
10
"
Language-Team :
FRENCH <[email protected] >\n "
12
11
"Language : fr\n "
13
12
"MIME-Version : 1.0\n "
14
13
"Content-Type : text/plain; charset=UTF-8\n "
15
14
"Content-Transfer-Encoding : 8bit\n "
15
+ "
Last-Translator :
Jules Lasne <[email protected] >\n "
16
+ "X-Generator : Poedit 2.2.1\n "
16
17
17
18
#: ../Doc/library/__future__.rst:2
18
19
msgid ":mod:`__future__` --- Future statement definitions"
@@ -25,19 +26,26 @@ msgstr "**Source code:** :source:`Lib/_future_.py`"
25
26
#: ../Doc/library/__future__.rst:11
26
27
msgid ":mod:`__future__` is a real module, and serves three purposes:"
27
28
msgstr ""
29
+ "Le module :mod:`__future__` est un vrai module, et il a trois objectifs :"
28
30
29
31
#: ../Doc/library/__future__.rst:13
30
32
msgid ""
31
33
"To avoid confusing existing tools that analyze import statements and expect "
32
34
"to find the modules they're importing."
33
35
msgstr ""
36
+ "éviter de dérouter les outils existants qui analysent les instructions "
37
+ "d'importation et s'attendent à trouver les modules qu'ils importent ;"
34
38
35
39
#: ../Doc/library/__future__.rst:16
36
40
msgid ""
37
41
"To ensure that :ref:`future statements <future>` run under releases prior to "
38
42
"2.1 at least yield runtime exceptions (the import of :mod:`__future__` will "
39
43
"fail, because there was no module of that name prior to 2.1)."
40
44
msgstr ""
45
+ "s'assurer que les :ref:`instructions *future* <future>` lancées sous les "
46
+ "versions antérieures à 2.1 lèvent au moins des exceptions à l'exécution "
47
+ "(l’import du module :mod:`__future__` échoue, car il n’y avait pas de module "
48
+ "de ce nom avant 2.1) ;"
41
49
42
50
#: ../Doc/library/__future__.rst:20
43
51
msgid ""
@@ -46,29 +54,41 @@ msgid ""
46
54
"and can be inspected programmatically via importing :mod:`__future__` and "
47
55
"examining its contents."
48
56
msgstr ""
57
+ "Pour documenter le phasage de changements entraînant des incompatibilités : "
58
+ "introduction, utilisation obligatoire. Il s’agit d’une forme de "
59
+ "documentation exécutable, qui peut être inspectée par un programme en "
60
+ "important :mod:`__future__` et en examinant son contenu."
49
61
50
62
#: ../Doc/library/__future__.rst:25
51
63
msgid "Each statement in :file:`__future__.py` is of the form::"
52
- msgstr ""
64
+ msgstr "Chaque instruction dans :file:`__future__.py` est de la forme :: "
53
65
54
66
#: ../Doc/library/__future__.rst:31
55
67
msgid ""
56
68
"where, normally, *OptionalRelease* is less than *MandatoryRelease*, and both "
57
69
"are 5-tuples of the same form as :data:`sys.version_info`::"
58
70
msgstr ""
71
+ "où, normalement, *OptionalRelease* est inférieur à *MandatoryRelease*, et "
72
+ "les deux sont des quintuplets de la même forme que :data:`sys."
73
+ "version_info` ::"
59
74
60
75
#: ../Doc/library/__future__.rst:41
61
76
msgid ""
62
77
"*OptionalRelease* records the first release in which the feature was "
63
78
"accepted."
64
79
msgstr ""
80
+ "*OptionalRelease* enregistre la première version dans laquelle la "
81
+ "fonctionnalité a été acceptée."
65
82
66
83
#: ../Doc/library/__future__.rst:43
67
84
msgid ""
68
85
"In the case of a *MandatoryRelease* that has not yet occurred, "
69
86
"*MandatoryRelease* predicts the release in which the feature will become "
70
87
"part of the language."
71
88
msgstr ""
89
+ "Dans le cas d'un *MandatoryRelease* qui n'a pas encore eu lieu, "
90
+ "*MandatoryRelease* prédit la *release* dans laquelle la fonctionnalité "
91
+ "deviendra un élément du langage."
72
92
73
93
#: ../Doc/library/__future__.rst:47
74
94
msgid ""
@@ -77,18 +97,26 @@ msgid ""
77
97
"statement to use the feature in question, but may continue to use such "
78
98
"imports."
79
99
msgstr ""
100
+ "Sinon *MandatoryRelease* enregistre lorsque la fonctionnalité est devenue "
101
+ "une partie du langage ; dans cette version ou les suivantes, les modules "
102
+ "n'ont plus besoin d'une déclaration *future* pour utiliser la fonctionnalité "
103
+ "en question, mais ils peuvent continuer à utiliser ces importations."
80
104
81
105
#: ../Doc/library/__future__.rst:51
82
106
msgid ""
83
107
"*MandatoryRelease* may also be ``None``, meaning that a planned feature got "
84
108
"dropped."
85
109
msgstr ""
110
+ "*MandatoryRelease* peut également être ``None``, ce qui signifie qu'une "
111
+ "fonction planifiée a été abandonnée."
86
112
87
113
#: ../Doc/library/__future__.rst:54
88
114
msgid ""
89
115
"Instances of class :class:`_Feature` have two corresponding methods, :meth:"
90
116
"`getOptionalRelease` and :meth:`getMandatoryRelease`."
91
117
msgstr ""
118
+ "Les instances de classe :class:`_Feature` ont deux méthodes "
119
+ "correspondantes, :meth:`getOptionalRelease` et :meth:`getMandatoryRelease`."
92
120
93
121
#: ../Doc/library/__future__.rst:57
94
122
msgid ""
@@ -97,6 +125,11 @@ msgid ""
97
125
"dynamically compiled code. This flag is stored in the :attr:`compiler_flag` "
98
126
"attribute on :class:`_Feature` instances."
99
127
msgstr ""
128
+ "*CompilerFlag* est un drapeau (chaque bit représente un champ) qui doit être "
129
+ "passé en tant que quatrième argument à la fonction native :func:`compile` "
130
+ "pour activer la fonctionnalité dans le code compilé dynamiquement. Cet "
131
+ "indicateur est stocké dans l'attribut :attr:`compiler_flag` dans les "
132
+ "instances de :class:`_Feature`."
100
133
101
134
#: ../Doc/library/__future__.rst:62
102
135
msgid ""
@@ -138,7 +171,7 @@ msgstr "2.2"
138
171
139
172
#: ../Doc/library/__future__.rst:69
140
173
msgid ":pep:`227`: *Statically Nested Scopes*"
141
- msgstr ":pep:`227`: *Statically Nested Scopes *"
174
+ msgstr ":pep:`227` : *Portées imbriquées *"
142
175
143
176
#: ../Doc/library/__future__.rst:72
144
177
msgid "generators"
@@ -154,7 +187,7 @@ msgstr "2.3"
154
187
155
188
#: ../Doc/library/__future__.rst:72
156
189
msgid ":pep:`255`: *Simple Generators*"
157
- msgstr ":pep:`255` : *Générateurs simples*"
190
+ msgstr ":pep:`255` : *Générateurs simples*"
158
191
159
192
#: ../Doc/library/__future__.rst:75
160
193
msgid "division"
@@ -171,7 +204,7 @@ msgstr "3.0"
171
204
172
205
#: ../Doc/library/__future__.rst:75
173
206
msgid ":pep:`238`: *Changing the Division Operator*"
174
- msgstr ":pep:`328` : *Changer l'opérateur de division*"
207
+ msgstr ":pep:`328` : *Changement de l'opérateur de division*"
175
208
176
209
#: ../Doc/library/__future__.rst:78
177
210
msgid "absolute_import"
@@ -183,7 +216,7 @@ msgstr "2.5.0a1"
183
216
184
217
#: ../Doc/library/__future__.rst:78
185
218
msgid ":pep:`328`: *Imports: Multi-Line and Absolute/Relative*"
186
- msgstr ""
219
+ msgstr ":pep:`328` : *Imports : multilignes et absolus/relatifs* "
187
220
188
221
#: ../Doc/library/__future__.rst:81
189
222
msgid "with_statement"
@@ -195,7 +228,7 @@ msgstr "2.6"
195
228
196
229
#: ../Doc/library/__future__.rst:81
197
230
msgid ":pep:`343`: *The \" with\" Statement*"
198
- msgstr ":pep:`343` : *L'instruction \" with\" *"
231
+ msgstr ":pep:`343` : *L'instruction \" with\" *"
199
232
200
233
#: ../Doc/library/__future__.rst:84
201
234
msgid "print_function"
@@ -207,15 +240,15 @@ msgstr "2.6.0a2"
207
240
208
241
#: ../Doc/library/__future__.rst:84
209
242
msgid ":pep:`3105`: *Make print a function*"
210
- msgstr ":pep:`3105`: *Make print a function *"
243
+ msgstr ":pep:`3105` : *Transformation de print en fonction *"
211
244
212
245
#: ../Doc/library/__future__.rst:87
213
246
msgid "unicode_literals"
214
247
msgstr "unicode_literals"
215
248
216
249
#: ../Doc/library/__future__.rst:87
217
250
msgid ":pep:`3112`: *Bytes literals in Python 3000*"
218
- msgstr ":pep:`3112` : *Obtets littéraux en Python 3000*"
251
+ msgstr ":pep:`3112` : *Chaînes d'octets littéraux en Python 3000*"
219
252
220
253
#: ../Doc/library/__future__.rst:90
221
254
msgid "generator_stop"
@@ -232,10 +265,11 @@ msgstr "3.7"
232
265
#: ../Doc/library/__future__.rst:90
233
266
msgid ":pep:`479`: *StopIteration handling inside generators*"
234
267
msgstr ""
268
+ ":pep:`479` : *Gestion de *StopIteration* à l’intérieur des générateurs*"
235
269
236
270
#: ../Doc/library/__future__.rst:93
237
271
msgid "annotations"
238
- msgstr ""
272
+ msgstr "annotations "
239
273
240
274
#: ../Doc/library/__future__.rst:93
241
275
msgid "3.7.0b1"
@@ -247,7 +281,7 @@ msgstr "4.0"
247
281
248
282
#: ../Doc/library/__future__.rst:93
249
283
msgid ":pep:`563`: *Postponed evaluation of annotations*"
250
- msgstr ""
284
+ msgstr ":pep:`563` : *Évaluation différée des annotations* "
251
285
252
286
#: ../Doc/library/__future__.rst:102
253
287
msgid ":ref:`future`"
0 commit comments