forked from python/python-docs-fr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathasyncio.po
More file actions
237 lines (205 loc) · 9.25 KB
/
Copy pathasyncio.po
File metadata and controls
237 lines (205 loc) · 9.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
# Copyright (C) 2001-2018, Python Software Foundation
# For licence information, see README file.
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-04-03 13:15+0200\n"
"PO-Revision-Date: 2018-12-16 16:19+0100\n"
"Last-Translator: Antoine Wecxsteen\n"
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 2.0.6\n"
#: ../Doc/library/asyncio.rst:66
msgid "High-level APIs"
msgstr "Bibliothèques de haut-niveau"
#: ../Doc/library/asyncio.rst:77
msgid "Low-level APIs"
msgstr "Bibliothèques de bas-niveau"
#: ../Doc/library/asyncio.rst:87
msgid "Guides and Tutorials"
msgstr "Guides et tutoriels"
#: ../Doc/library/asyncio.rst:2
msgid ":mod:`asyncio` --- Asynchronous I/O"
msgstr ":mod:`asyncio` — Entrées/Sorties asynchrones"
#: ../Doc/library/asyncio.rst:None
msgid "Hello World!"
msgstr "Hello World !"
#: ../Doc/library/asyncio.rst:23
msgid ""
"asyncio is a library to write **concurrent** code using the **async/await** "
"syntax."
msgstr ""
"`asyncio` est une bibliothèque permettant de faire de la programmation "
"asynchrone en utilisant la syntaxe *async*/*await*."
#: ../Doc/library/asyncio.rst:26
msgid ""
"asyncio is used as a foundation for multiple Python asynchronous frameworks "
"that provide high-performance network and web-servers, database connection "
"libraries, distributed task queues, etc."
msgstr ""
"`asyncio` constitue la base de nombreux cadriciels (*frameworks*) Python "
"asynchrones qui fournissent des utilitaires réseau et des serveurs web "
"performants, des bibliothèques de connexion à des bases de données, des "
"files d'exécution distribuées, etc."
#: ../Doc/library/asyncio.rst:30
msgid ""
"asyncio is often a perfect fit for IO-bound and high-level **structured** "
"network code."
msgstr ""
"`asyncio` est souvent le bon choix pour écrire du code réseau de haut-niveau "
"et tributaire des entrées-sorties (*IO-bound*)."
#: ../Doc/library/asyncio.rst:33
msgid "asyncio provides a set of **high-level** APIs to:"
msgstr ""
"`asyncio` fournit des interfaces de programmation **haut-niveau** pour :"
#: ../Doc/library/asyncio.rst:35
msgid ""
":ref:`run Python coroutines <coroutine>` concurrently and have full control "
"over their execution;"
msgstr ""
":ref:`exécuter des coroutines Python <coroutine>` de manière concurrente et "
"d'avoir le contrôle total sur leur exécution ;"
#: ../Doc/library/asyncio.rst:38
msgid "perform :ref:`network IO and IPC <asyncio-streams>`;"
msgstr ""
"effectuer :ref:`des entrées/sorties réseau et de la communication inter-"
"processus <asyncio-streams>` ;"
#: ../Doc/library/asyncio.rst:40
msgid "control :ref:`subprocesses <asyncio-subprocess>`;"
msgstr "contrôler des :ref:`sous-processus <asyncio-subprocess>` ;"
#: ../Doc/library/asyncio.rst:42
msgid "distribute tasks via :ref:`queues <asyncio-queues>`;"
msgstr "distribuer des tâches avec des :ref:`queues <asyncio-queues>` ;"
#: ../Doc/library/asyncio.rst:44
msgid ":ref:`synchronize <asyncio-sync>` concurrent code;"
msgstr ""
":ref:`synchroniser <asyncio-sync>` du code s'exécutant de manière "
"concurrente ;"
#: ../Doc/library/asyncio.rst:46
msgid ""
"Additionally, there are **low-level** APIs for *library and framework "
"developers* to:"
msgstr ""
"En plus, il existe des bibliothèques de **bas-niveau** pour que les "
"*développeurs de bibliothèques et de frameworks* puissent :"
#: ../Doc/library/asyncio.rst:49
msgid ""
"create and manage :ref:`event loops <asyncio-event-loop>`, which provide "
"asynchronous APIs for :meth:`networking <loop.create_server>`, running :meth:"
"`subprocesses <loop.subprocess_exec>`, handling :meth:`OS signals <loop."
"add_signal_handler>`, etc;"
msgstr ""
"créer et gérer des :ref:`boucles d'événements <asyncio-event-loop>`, qui "
"fournissent des bibliothèques asynchrones de :meth:`réseau <loop."
"create_server>`, d'exécution de :meth:`subprocesses <loop.subprocess_exec>`, "
"de gestion de :meth:`signaux système <loop.add_signal_handler>`, etc ;"
#: ../Doc/library/asyncio.rst:54
msgid ""
"implement efficient protocols using :ref:`transports <asyncio-transports-"
"protocols>`;"
msgstr ""
"implémenter des protocoles efficaces à l'aide de :ref:`transports <asyncio-"
"transports-protocols>` ;"
#: ../Doc/library/asyncio.rst:57
msgid ""
":ref:`bridge <asyncio-futures>` callback-based libraries and code with async/"
"await syntax."
msgstr ""
":ref:`lier <asyncio-futures>` des bibliothèques basées sur les fonctions de "
"rappel et développer avec la syntaxe *async*/*await*."
#: ../Doc/library/asyncio.rst:65
msgid "Reference"
msgstr "Sommaire"
#~ msgid "**Source code:** :source:`Lib/asyncio/`"
#~ msgstr "**Code source :** :source:`Lib/asyncio/`"
#~ msgid ""
#~ "This module provides infrastructure for writing single-threaded "
#~ "concurrent code using coroutines, multiplexing I/O access over sockets "
#~ "and other resources, running network clients and servers, and other "
#~ "related primitives. Here is a more detailed list of the package contents:"
#~ msgstr ""
#~ "Ce module fournit l’infrastructure pour écrire des programmes à fil "
#~ "d’exécution unique (*single-thread en anglais*) mais permettant "
#~ "l’exécution de code concurrent en utilisant les coroutines, les accès "
#~ "multiplexés aux entrées-sorties par l’intermédiaire de *sockets* ou "
#~ "autres ressources, la gestion de clients et serveurs réseaux et d’autres "
#~ "fonctions primitives associées. Voici une liste plus détaillée du contenu "
#~ "du paquet :"
#~ msgid ""
#~ "a pluggable :ref:`event loop <asyncio-event-loop>` with various system-"
#~ "specific implementations;"
#~ msgstr ""
#~ "une :ref:`boucle d’évènements <asyncio-event-loop>` prête à l’emploi dont "
#~ "les implémentations sont spécifiques à leur plateforme ;"
#~ msgid ""
#~ ":ref:`transport <asyncio-transport>` and :ref:`protocol <asyncio-"
#~ "protocol>` abstractions (similar to those in `Twisted <https://"
#~ "twistedmatrix.com/trac/>`_);"
#~ msgstr ""
#~ "Des abstractions pour les couches :ref:`transport <asyncio-transport>` "
#~ "et :ref:`protocole <asyncio-protocol>` (similaire à celles proposées par "
#~ "`Twisted <https://twistedmatrix.com/trac/>`_) ;"
#~ msgid ""
#~ "concrete support for TCP, UDP, SSL, subprocess pipes, delayed calls, and "
#~ "others (some may be system-dependent);"
#~ msgstr ""
#~ "pour la gestion effective de TCP, UDP, SSL, la communication inter-"
#~ "processus par tubes, les appels différés, et autres (certains peuvent "
#~ "être dépendant du système) ;"
#~ msgid ""
#~ "a :class:`Future` class that mimics the one in the :mod:`concurrent."
#~ "futures` module, but adapted for use with the event loop;"
#~ msgstr ""
#~ "une classe :class:`Future` qui imite celle du :mod:`concurrent.futures` "
#~ "module, mais qui est adaptée pour fonctionner avec la boucle "
#~ "d’évènements ;"
#~ msgid ""
#~ "coroutines and tasks based on ``yield from`` (:PEP:`380`), to help write "
#~ "concurrent code in a sequential fashion;"
#~ msgstr ""
#~ "des coroutines et tâches qui se basent sur ``yield from`` (:PEP:`380`), "
#~ "pour écrire du code concurrent de manière séquentielle ;"
#~ msgid "cancellation support for :class:`Future`\\s and coroutines;"
#~ msgstr ""
#~ "annulation de la gestion de la classe :class:`Future`\\s et coroutines ;"
#~ msgid ""
#~ ":ref:`synchronization primitives <asyncio-sync>` for use between "
#~ "coroutines in a single thread, mimicking those in the :mod:`threading` "
#~ "module;"
#~ msgstr ""
#~ ":ref:`des primitives de synchronisation <asyncio-sync>` à utiliser entre "
#~ "des coroutines dans un fil d’exécution unique, en imitant celles "
#~ "présentes dans le module :mod:`threading` ;"
#~ msgid ""
#~ "an interface for passing work off to a threadpool, for times when you "
#~ "absolutely, positively have to use a library that makes blocking I/O "
#~ "calls."
#~ msgstr ""
#~ "une interface pour déléguer des tâches à un groupe de fils d’exécutions, "
#~ "lorsque vous avez absolument besoin d’utiliser une bibliothèque qui "
#~ "effectue des entrées-sorties bloquantes."
#~ msgid ""
#~ "Asynchronous programming is more complex than classical \"sequential\" "
#~ "programming: see the :ref:`Develop with asyncio <asyncio-dev>` page which "
#~ "lists common traps and explains how to avoid them. :ref:`Enable the debug "
#~ "mode <asyncio-debug-mode>` during development to detect common issues."
#~ msgstr ""
#~ "Programmer de façon asynchrone est plus complexe que programmer d’une "
#~ "façon séquentielle : lisez la page :ref:`Develop with asyncio <asyncio-"
#~ "dev>` qui liste les pièges fréquents et explique la manière de les "
#~ "éviter. :ref:`Activer le mode de débogage d’asyncio <asyncio-debug-mode>` "
#~ "pendant le développement afin de détecter les problèmes courants."
#~ msgid "Table of contents:"
#~ msgstr "Table des matières :"
#~ msgid ""
#~ "The :mod:`asyncio` module was designed in :PEP:`3156`. For a motivational "
#~ "primer on transports and protocols, see :PEP:`3153`."
#~ msgstr ""
#~ "Le module :mod:`asyncio` a été présenté dans la :PEP:`3156`. La :PEP:"
#~ "`3153` décrit les motivations premières concernant les couches transports "
#~ "et protocoles."