@@ -6,14 +6,14 @@ msgstr ""
6
6
"Project-Id-Version : Python 3\n "
7
7
"Report-Msgid-Bugs-To : \n "
8
8
"POT-Creation-Date : 2023-07-23 14:38+0200\n "
9
- "PO-Revision-Date : 2023-03-19 13:06+0100 \n "
10
- "Last-Translator : Jean Abou Samra <jean@abou-samra.fr >\n "
9
+ "PO-Revision-Date : 2023-10-05 22:23-0600 \n "
10
+ "Last-Translator : James Adjinwa <jamesadjinwa000@duck.com >\n "
11
11
"Language-Team : FRENCH <traductions@lists.afpy.org>\n "
12
12
"Language : fr\n "
13
13
"MIME-Version : 1.0\n "
14
14
"Content-Type : text/plain; charset=UTF-8\n "
15
15
"Content-Transfer-Encoding : 8bit\n "
16
- "X-Generator : Poedit 3.2.1 \n "
16
+ "X-Generator : Poedit 3.4 \n "
17
17
18
18
#: glossary.rst:5
19
19
msgid "Glossary"
@@ -211,15 +211,15 @@ msgid "asynchronous context manager"
211
211
msgstr "gestionnaire de contexte asynchrone"
212
212
213
213
#: glossary.rst:94
214
- #, fuzzy
215
214
msgid ""
216
215
"An object which controls the environment seen in an :keyword:`async with` "
217
216
"statement by defining :meth:`~object.__aenter__` and :meth:`~object."
218
217
"__aexit__` methods. Introduced by :pep:`492`."
219
218
msgstr ""
220
219
"(*asynchronous context manager* en anglais) Objet contrôlant l'environnement "
221
- "à l'intérieur d'une instruction :keyword:`with` en définissant les méthodes :"
222
- "meth:`__aenter__` et :meth:`__aexit__`. A été Introduit par la :pep:`492`."
220
+ "à l'intérieur d'une instruction :keyword:`async with` en définissant les "
221
+ "méthodes :meth:`~object.__aenter__` et :meth:`~object.__aexit__`. A été "
222
+ "Introduit par la :pep:`492`."
223
223
224
224
#: glossary.rst:97
225
225
msgid "asynchronous generator"
@@ -267,19 +267,18 @@ msgstr ""
267
267
"Objet créé par un :term:`générateur asynchrone <asynchronous generator>`."
268
268
269
269
#: glossary.rst:115
270
- #, fuzzy
271
270
msgid ""
272
271
"This is an :term:`asynchronous iterator` which when called using the :meth:"
273
272
"`~object.__anext__` method returns an awaitable object which will execute "
274
273
"the body of the asynchronous generator function until the next :keyword:"
275
274
"`yield` expression."
276
275
msgstr ""
277
276
"C'est un :term:`asynchronous iterator` qui, lorsqu'il est appelé via la "
278
- "méthode :meth:`__anext__` renvoie un objet *awaitable* qui exécute le corps "
279
- "de la fonction du générateur asynchrone jusqu'au prochain :keyword:`yield`."
277
+ "méthode :meth:`~object.__anext__` renvoie un objet *awaitable* qui exécute "
278
+ "le corps de la fonction du générateur asynchrone jusqu'au prochain :keyword:"
279
+ "`yield`."
280
280
281
281
#: glossary.rst:120
282
- #, fuzzy
283
282
msgid ""
284
283
"Each :keyword:`yield` temporarily suspends processing, remembering the "
285
284
"location execution state (including local variables and pending try-"
@@ -288,46 +287,44 @@ msgid ""
288
287
"where it left off. See :pep:`492` and :pep:`525`."
289
288
msgstr ""
290
289
"Chaque :keyword:`yield` suspend temporairement l'exécution, en gardant en "
291
- "mémoire l'endroit et l'état de l'exécution (ce qui inclut les variables "
290
+ "mémoire l'emplacement et l'état de l'exécution (ce qui inclut les variables "
292
291
"locales et les *try* en cours). Lorsque l'exécution de l'itérateur de "
293
292
"générateur asynchrone reprend avec un nouvel *awaitable* renvoyé par :meth:"
294
- "`__anext__`, elle repart de là où elle s'était arrêtée. Voir les :pep:`492` "
295
- "et :pep:`525`."
293
+ "`~object. __anext__`, elle repart de là où elle s'était arrêtée. Voir les :"
294
+ "pep:`492` et :pep:`525`."
296
295
297
296
#: glossary.rst:125
298
297
msgid "asynchronous iterable"
299
298
msgstr "itérable asynchrone"
300
299
301
300
#: glossary.rst:127
302
- #, fuzzy
303
301
msgid ""
304
302
"An object, that can be used in an :keyword:`async for` statement. Must "
305
303
"return an :term:`asynchronous iterator` from its :meth:`~object.__aiter__` "
306
304
"method. Introduced by :pep:`492`."
307
305
msgstr ""
308
306
"Objet qui peut être utilisé dans une instruction :keyword:`async for`. Sa "
309
- "méthode :meth:`__aiter__` doit renvoyer un :term:`asynchronous iterator`. A "
310
- "été introduit par la :pep:`492`."
307
+ "méthode :meth:`~object. __aiter__` doit renvoyer un :term:`asynchronous "
308
+ "iterator`. A été introduit par la :pep:`492`."
311
309
312
310
#: glossary.rst:130
313
311
msgid "asynchronous iterator"
314
312
msgstr "itérateur asynchrone"
315
313
316
314
#: glossary.rst:132
317
- #, fuzzy
318
315
msgid ""
319
316
"An object that implements the :meth:`~object.__aiter__` and :meth:`~object."
320
317
"__anext__` methods. :meth:`~object.__anext__` must return an :term:"
321
318
"`awaitable` object. :keyword:`async for` resolves the awaitables returned by "
322
319
"an asynchronous iterator's :meth:`~object.__anext__` method until it raises "
323
320
"a :exc:`StopAsyncIteration` exception. Introduced by :pep:`492`."
324
321
msgstr ""
325
- "Objet qui implémente les méthodes :meth:`__aiter__` et :meth:`__anext__`. "
326
- "`` __anext__`` doit renvoyer un objet :term:`awaitable`. Tant que la méthode :"
327
- "meth:`__anext__` produit des objets *awaitable*, le :keyword:`async for` "
328
- "appelant les consomme. L'itérateur asynchrone lève une exception :exc: "
329
- "`StopAsyncIteration` pour signifier la fin de l'itération. A été introduit "
330
- "par la :pep:`492`."
322
+ "Objet qui implémente les méthodes :meth:`~object. __aiter__` et :meth:"
323
+ "`~object. __anext__`. :meth:`~object.__anext__` doit renvoyer un objet :term:"
324
+ "`awaitable`. Tant que la méthode :meth:`~object.__anext__` produit des "
325
+ "objets *awaitable*, le :keyword:`async for` appelant les consomme. "
326
+ "L'itérateur asynchrone lève une exception :exc:`StopAsyncIteration` pour "
327
+ "signifier la fin de l'itération. A été introduit par la :pep:`492`."
331
328
332
329
#: glossary.rst:137
333
330
msgid "attribute"
@@ -362,15 +359,14 @@ msgid "awaitable"
362
359
msgstr "attendable (*awaitable*)"
363
360
364
361
#: glossary.rst:151
365
- #, fuzzy
366
362
msgid ""
367
363
"An object that can be used in an :keyword:`await` expression. Can be a :"
368
364
"term:`coroutine` or an object with an :meth:`~object.__await__` method. See "
369
365
"also :pep:`492`."
370
366
msgstr ""
371
367
"Objet pouvant être utilisé dans une expression :keyword:`await`. Ce peut "
372
- "être une :term:`coroutine` ou un objet avec une méthode :meth:`__await__`. "
373
- "Voir aussi la :pep:`492`."
368
+ "être une :term:`coroutine` ou un objet avec une méthode :meth:`~object. "
369
+ "__await__`. Voir aussi la :pep:`492`."
374
370
375
371
#: glossary.rst:154
376
372
msgid "BDFL"
@@ -2709,8 +2705,8 @@ msgstr "encodages de texte"
2709
2705
2710
2706
#: glossary.rst:1145
2711
2707
msgid ""
2712
- "A string in Python is a sequence of Unicode code points (in range "
2713
- "``U +0000``--``U+10FFFF``). To store or transfer a string, it needs to be "
2708
+ "A string in Python is a sequence of Unicode code points (in range ``U "
2709
+ "+0000``--``U+10FFFF``). To store or transfer a string, it needs to be "
2714
2710
"serialized as a sequence of bytes."
2715
2711
msgstr ""
2716
2712
"Une chaîne de caractères en Python est une suite de points de code Unicode "
@@ -2782,8 +2778,8 @@ msgstr ""
2782
2778
"qui ne soit pas disponible avec une chaîne entre guillemets, elle est utile "
2783
2779
"pour de nombreuses raisons. Elle vous autorise à insérer des guillemets "
2784
2780
"simples et doubles dans une chaîne sans avoir à les protéger et elle peut "
2785
- "s'étendre sur plusieurs lignes sans avoir à terminer chaque ligne par un "
2786
- "`` \\ ``. Elle est ainsi particulièrement utile pour les chaînes de "
2781
+ "s'étendre sur plusieurs lignes sans avoir à terminer chaque ligne par un `` "
2782
+ "\\ ``. Elle est ainsi particulièrement utile pour les chaînes de "
2787
2783
"documentation (*docstrings*)."
2788
2784
2789
2785
#: glossary.rst:1175
0 commit comments