@@ -6,13 +6,14 @@ msgstr ""
66"Project-Id-Version : Python 3.6\n "
77"Report-Msgid-Bugs-To : \n "
88"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 "
1110"Language-Team : FRENCH <traductions@lists.afpy.org>\n "
1211"Language : fr\n "
1312"MIME-Version : 1.0\n "
1413"Content-Type : text/plain; charset=UTF-8\n "
1514"Content-Transfer-Encoding : 8bit\n "
15+ "Last-Translator : Jules Lasne <jules.lasne@gmail.com>\n "
16+ "X-Generator : Poedit 2.2.1\n "
1617
1718#: ../Doc/library/__future__.rst:2
1819msgid ":mod:`__future__` --- Future statement definitions"
@@ -25,19 +26,26 @@ msgstr "**Source code:** :source:`Lib/_future_.py`"
2526#: ../Doc/library/__future__.rst:11
2627msgid ":mod:`__future__` is a real module, and serves three purposes:"
2728msgstr ""
29+ "Le module :mod:`__future__` est un vrai module, et il a trois objectifs :"
2830
2931#: ../Doc/library/__future__.rst:13
3032msgid ""
3133"To avoid confusing existing tools that analyze import statements and expect "
3234"to find the modules they're importing."
3335msgstr ""
36+ "éviter de dérouter les outils existants qui analysent les instructions "
37+ "d'importation et s'attendent à trouver les modules qu'ils importent ;"
3438
3539#: ../Doc/library/__future__.rst:16
3640msgid ""
3741"To ensure that :ref:`future statements <future>` run under releases prior to "
3842"2.1 at least yield runtime exceptions (the import of :mod:`__future__` will "
3943"fail, because there was no module of that name prior to 2.1)."
4044msgstr ""
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) ;"
4149
4250#: ../Doc/library/__future__.rst:20
4351msgid ""
@@ -46,29 +54,41 @@ msgid ""
4654"and can be inspected programmatically via importing :mod:`__future__` and "
4755"examining its contents."
4856msgstr ""
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."
4961
5062#: ../Doc/library/__future__.rst:25
5163msgid "Each statement in :file:`__future__.py` is of the form::"
52- msgstr ""
64+ msgstr "Chaque instruction dans :file:`__future__.py` est de la forme :: "
5365
5466#: ../Doc/library/__future__.rst:31
5567msgid ""
5668"where, normally, *OptionalRelease* is less than *MandatoryRelease*, and both "
5769"are 5-tuples of the same form as :data:`sys.version_info`::"
5870msgstr ""
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` ::"
5974
6075#: ../Doc/library/__future__.rst:41
6176msgid ""
6277"*OptionalRelease* records the first release in which the feature was "
6378"accepted."
6479msgstr ""
80+ "*OptionalRelease* enregistre la première version dans laquelle la "
81+ "fonctionnalité a été acceptée."
6582
6683#: ../Doc/library/__future__.rst:43
6784msgid ""
6885"In the case of a *MandatoryRelease* that has not yet occurred, "
6986"*MandatoryRelease* predicts the release in which the feature will become "
7087"part of the language."
7188msgstr ""
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."
7292
7393#: ../Doc/library/__future__.rst:47
7494msgid ""
@@ -77,18 +97,26 @@ msgid ""
7797"statement to use the feature in question, but may continue to use such "
7898"imports."
7999msgstr ""
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."
80104
81105#: ../Doc/library/__future__.rst:51
82106msgid ""
83107"*MandatoryRelease* may also be ``None``, meaning that a planned feature got "
84108"dropped."
85109msgstr ""
110+ "*MandatoryRelease* peut également être ``None``, ce qui signifie qu'une "
111+ "fonction planifiée a été abandonnée."
86112
87113#: ../Doc/library/__future__.rst:54
88114msgid ""
89115"Instances of class :class:`_Feature` have two corresponding methods, :meth:"
90116"`getOptionalRelease` and :meth:`getMandatoryRelease`."
91117msgstr ""
118+ "Les instances de classe :class:`_Feature` ont deux méthodes "
119+ "correspondantes, :meth:`getOptionalRelease` et :meth:`getMandatoryRelease`."
92120
93121#: ../Doc/library/__future__.rst:57
94122msgid ""
@@ -97,6 +125,11 @@ msgid ""
97125"dynamically compiled code. This flag is stored in the :attr:`compiler_flag` "
98126"attribute on :class:`_Feature` instances."
99127msgstr ""
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`."
100133
101134#: ../Doc/library/__future__.rst:62
102135msgid ""
@@ -138,7 +171,7 @@ msgstr "2.2"
138171
139172#: ../Doc/library/__future__.rst:69
140173msgid ":pep:`227`: *Statically Nested Scopes*"
141- msgstr ":pep:`227`: *Statically Nested Scopes *"
174+ msgstr ":pep:`227` : *Portées imbriquées *"
142175
143176#: ../Doc/library/__future__.rst:72
144177msgid "generators"
@@ -154,7 +187,7 @@ msgstr "2.3"
154187
155188#: ../Doc/library/__future__.rst:72
156189msgid ":pep:`255`: *Simple Generators*"
157- msgstr ":pep:`255` : *Générateurs simples*"
190+ msgstr ":pep:`255` : *Générateurs simples*"
158191
159192#: ../Doc/library/__future__.rst:75
160193msgid "division"
@@ -171,7 +204,7 @@ msgstr "3.0"
171204
172205#: ../Doc/library/__future__.rst:75
173206msgid ":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*"
175208
176209#: ../Doc/library/__future__.rst:78
177210msgid "absolute_import"
@@ -183,7 +216,7 @@ msgstr "2.5.0a1"
183216
184217#: ../Doc/library/__future__.rst:78
185218msgid ":pep:`328`: *Imports: Multi-Line and Absolute/Relative*"
186- msgstr ""
219+ msgstr ":pep:`328` : *Imports : multilignes et absolus/relatifs* "
187220
188221#: ../Doc/library/__future__.rst:81
189222msgid "with_statement"
@@ -195,7 +228,7 @@ msgstr "2.6"
195228
196229#: ../Doc/library/__future__.rst:81
197230msgid ":pep:`343`: *The \" with\" Statement*"
198- msgstr ":pep:`343` : *L'instruction \" with\" *"
231+ msgstr ":pep:`343` : *L'instruction \" with\" *"
199232
200233#: ../Doc/library/__future__.rst:84
201234msgid "print_function"
@@ -207,15 +240,15 @@ msgstr "2.6.0a2"
207240
208241#: ../Doc/library/__future__.rst:84
209242msgid ":pep:`3105`: *Make print a function*"
210- msgstr ":pep:`3105`: *Make print a function *"
243+ msgstr ":pep:`3105` : *Transformation de print en fonction *"
211244
212245#: ../Doc/library/__future__.rst:87
213246msgid "unicode_literals"
214247msgstr "unicode_literals"
215248
216249#: ../Doc/library/__future__.rst:87
217250msgid ":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*"
219252
220253#: ../Doc/library/__future__.rst:90
221254msgid "generator_stop"
@@ -232,10 +265,11 @@ msgstr "3.7"
232265#: ../Doc/library/__future__.rst:90
233266msgid ":pep:`479`: *StopIteration handling inside generators*"
234267msgstr ""
268+ ":pep:`479` : *Gestion de *StopIteration* à l’intérieur des générateurs*"
235269
236270#: ../Doc/library/__future__.rst:93
237271msgid "annotations"
238- msgstr ""
272+ msgstr "annotations "
239273
240274#: ../Doc/library/__future__.rst:93
241275msgid "3.7.0b1"
@@ -247,7 +281,7 @@ msgstr "4.0"
247281
248282#: ../Doc/library/__future__.rst:93
249283msgid ":pep:`563`: *Postponed evaluation of annotations*"
250- msgstr ""
284+ msgstr ":pep:`563` : *Évaluation différée des annotations* "
251285
252286#: ../Doc/library/__future__.rst:102
253287msgid ":ref:`future`"
0 commit comments