1
0
Fork 0
python-docs-fr/library/asyncio-eventloop.po

1470 lines
48 KiB
Plaintext
Raw Normal View History

2018-07-04 09:06:45 +00:00
# Copyright (C) 2001-2018, Python Software Foundation
2016-10-30 09:46:26 +00:00
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
2018-06-28 13:32:56 +00:00
"POT-Creation-Date: 2018-06-28 15:29+0200\n"
2016-10-30 09:46:26 +00:00
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
2017-05-23 22:40:56 +00:00
"Language: fr\n"
2016-10-30 09:46:26 +00:00
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: ../Doc/library/asyncio-eventloop.rst:6
msgid "Base Event Loop"
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:8
2017-08-01 11:29:09 +00:00
msgid "**Source code:** :source:`Lib/asyncio/events.py`"
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:10
2016-10-30 09:46:26 +00:00
msgid ""
"The event loop is the central execution device provided by :mod:`asyncio`. "
"It provides multiple facilities, including:"
msgstr ""
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:13
2016-10-30 09:46:26 +00:00
msgid "Registering, executing and cancelling delayed calls (timeouts)."
msgstr ""
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:15
2016-10-30 09:46:26 +00:00
msgid ""
"Creating client and server :ref:`transports <asyncio-transport>` for various "
"kinds of communication."
msgstr ""
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:18
2016-10-30 09:46:26 +00:00
msgid ""
"Launching subprocesses and the associated :ref:`transports <asyncio-"
"transport>` for communication with an external program."
msgstr ""
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:21
2016-10-30 09:46:26 +00:00
msgid "Delegating costly function calls to a pool of threads."
msgstr ""
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:25
2016-10-30 09:46:26 +00:00
msgid ""
"This class is an implementation detail. It is a subclass of :class:"
"`AbstractEventLoop` and may be a base class of concrete event loop "
"implementations found in :mod:`asyncio`. It should not be used directly; "
"use :class:`AbstractEventLoop` instead. ``BaseEventLoop`` should not be "
"subclassed by third-party code; the internal interface is not stable."
msgstr ""
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:34
2016-10-30 09:46:26 +00:00
msgid "Abstract base class of event loops."
msgstr ""
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:36
2016-10-30 09:46:26 +00:00
msgid "This class is :ref:`not thread safe <asyncio-multithreading>`."
msgstr ""
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:39
2016-10-30 09:46:26 +00:00
msgid "Run an event loop"
msgstr "Exécuter une boucle d'évènements"
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:43
2016-10-30 09:46:26 +00:00
msgid ""
"Run until :meth:`stop` is called. If :meth:`stop` is called before :meth:"
"`run_forever()` is called, this polls the I/O selector once with a timeout "
"of zero, runs all callbacks scheduled in response to I/O events (and those "
"that were already scheduled), and then exits. If :meth:`stop` is called "
"while :meth:`run_forever` is running, this will run the current batch of "
"callbacks and then exit. Note that callbacks scheduled by callbacks will "
"not run in that case; they will run the next time :meth:`run_forever` is "
"called."
msgstr ""
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:56
2016-10-30 09:46:26 +00:00
msgid "Run until the :class:`Future` is done."
msgstr "Exécuter jusqu'à ce que :class:`Future` soit terminé."
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:58
2016-10-30 09:46:26 +00:00
msgid ""
"If the argument is a :ref:`coroutine object <coroutine>`, it is wrapped by :"
"func:`ensure_future`."
msgstr ""
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:61
2016-10-30 09:46:26 +00:00
msgid "Return the Future's result, or raise its exception."
msgstr ""
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:65
2016-10-30 09:46:26 +00:00
msgid "Returns running status of event loop."
msgstr "Donne le status d'exécution de la boucle d'évènements."
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:69
2016-10-30 09:46:26 +00:00
msgid "Stop running the event loop."
msgstr "Arrête l'exécution de la boucle d'évènements."
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:71
2016-10-30 09:46:26 +00:00
msgid ""
"This causes :meth:`run_forever` to exit at the next suitable opportunity "
"(see there for more details)."
msgstr ""
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:78
2016-10-30 09:46:26 +00:00
msgid "Returns ``True`` if the event loop was closed."
msgstr "Donne ``True`` si la boucle d'évènements est fermée."
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:84
2016-10-30 09:46:26 +00:00
msgid ""
"Close the event loop. The loop must not be running. Pending callbacks will "
"be lost."
msgstr ""
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:87
2016-10-30 09:46:26 +00:00
msgid ""
"This clears the queues and shuts down the executor, but does not wait for "
"the executor to finish."
msgstr ""
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:90
2016-10-30 09:46:26 +00:00
msgid ""
"This is idempotent and irreversible. No other methods should be called after "
"this one."
msgstr ""
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:96
2017-04-02 20:14:06 +00:00
msgid ""
"Schedule all currently open :term:`asynchronous generator` objects to close "
"with an :meth:`~agen.aclose()` call. After calling this method, the event "
"loop will issue a warning whenever a new asynchronous generator is "
"iterated. Should be used to finalize all scheduled asynchronous generators "
"reliably. Example::"
msgstr ""
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:114
2016-10-30 09:46:26 +00:00
msgid "Calls"
msgstr "Appels"
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:116
2016-10-30 09:46:26 +00:00
msgid ""
"Most :mod:`asyncio` functions don't accept keywords. If you want to pass "
"keywords to your callback, use :func:`functools.partial`. For example, "
"``loop.call_soon(functools.partial(print, \"Hello\", flush=True))`` will "
"call ``print(\"Hello\", flush=True)``."
msgstr ""
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:122
2016-10-30 09:46:26 +00:00
msgid ""
":func:`functools.partial` is better than ``lambda`` functions, because :mod:"
"`asyncio` can inspect :func:`functools.partial` object to display parameters "
"in debug mode, whereas ``lambda`` functions have a poor representation."
msgstr ""
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:129
2016-10-30 09:46:26 +00:00
msgid ""
"Arrange for a callback to be called as soon as possible. The callback is "
"called after :meth:`call_soon` returns, when control returns to the event "
"loop."
msgstr ""
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:133
2016-10-30 09:46:26 +00:00
msgid ""
"This operates as a :abbr:`FIFO (first-in, first-out)` queue, callbacks are "
"called in the order in which they are registered. Each callback will be "
"called exactly once."
msgstr ""
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:137
2016-10-30 09:46:26 +00:00
msgid ""
"Any positional arguments after the callback will be passed to the callback "
"when it is called."
msgstr ""
2017-08-01 11:29:09 +00:00
#: ../Doc/library/asyncio-eventloop.rst:140
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:197
msgid ""
"An optional keyword-only *context* argument allows specifying a custom :"
"class:`contextvars.Context` for the *callback* to run in. The current "
"context is used when no *context* is provided."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:144
2016-10-30 09:46:26 +00:00
msgid ""
"An instance of :class:`asyncio.Handle` is returned, which can be used to "
"cancel the callback."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:147
#: ../Doc/library/asyncio-eventloop.rst:201
#: ../Doc/library/asyncio-eventloop.rst:219
#: ../Doc/library/asyncio-eventloop.rst:649
#: ../Doc/library/asyncio-eventloop.rst:661
#: ../Doc/library/asyncio-eventloop.rst:867
2016-10-30 09:46:26 +00:00
msgid ""
":ref:`Use functools.partial to pass keywords to the callback <asyncio-pass-"
"keywords>`."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:150
#: ../Doc/library/asyncio-eventloop.rst:161
#: ../Doc/library/asyncio-eventloop.rst:204
#: ../Doc/library/asyncio-eventloop.rst:222
msgid ""
"The *context* keyword-only parameter was added. See :pep:`567` for more "
"details."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:156
2016-10-30 09:46:26 +00:00
msgid "Like :meth:`call_soon`, but thread safe."
2017-12-08 11:58:06 +00:00
msgstr "Comme :meth:`call_soon` mais *thread safe*."
2016-10-30 09:46:26 +00:00
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:158
2016-10-30 09:46:26 +00:00
msgid ""
"See the :ref:`concurrency and multithreading <asyncio-multithreading>` "
"section of the documentation."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:169
2016-10-30 09:46:26 +00:00
msgid "Delayed calls"
msgstr "Appels différés"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:171
2016-10-30 09:46:26 +00:00
msgid ""
"The event loop has its own internal clock for computing timeouts. Which "
"clock is used depends on the (platform-specific) event loop implementation; "
"ideally it is a monotonic clock. This will generally be a different clock "
"than :func:`time.time`."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:178
2016-10-30 09:46:26 +00:00
msgid ""
"Timeouts (relative *delay* or absolute *when*) should not exceed one day."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:183
2016-10-30 09:46:26 +00:00
msgid ""
"Arrange for the *callback* to be called after the given *delay* seconds "
"(either an int or float)."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:186
#: ../Doc/library/asyncio-eventloop.rst:216
msgid ""
"An instance of :class:`asyncio.TimerHandle` is returned, which can be used "
"to cancel the callback."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:189
2016-10-30 09:46:26 +00:00
msgid ""
"*callback* will be called exactly once per call to :meth:`call_later`. If "
"two callbacks are scheduled for exactly the same time, it is undefined which "
"will be called first."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:193
2016-10-30 09:46:26 +00:00
msgid ""
"The optional positional *args* will be passed to the callback when it is "
"called. If you want the callback to be called with some named arguments, use "
"a closure or :func:`functools.partial`."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:210
2016-10-30 09:46:26 +00:00
msgid ""
"Arrange for the *callback* to be called at the given absolute timestamp "
"*when* (an int or float), using the same time reference as :meth:"
"`AbstractEventLoop.time`."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:214
2016-10-30 09:46:26 +00:00
msgid "This method's behavior is the same as :meth:`call_later`."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:228
2016-10-30 09:46:26 +00:00
msgid ""
"Return the current time, as a :class:`float` value, according to the event "
"loop's internal clock."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:233
2016-10-30 09:46:26 +00:00
msgid "The :func:`asyncio.sleep` function."
msgstr "La fonction :func:`asyncio.sleep`."
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:237
2016-10-30 09:46:26 +00:00
msgid "Futures"
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:241
2016-10-30 09:46:26 +00:00
msgid "Create an :class:`asyncio.Future` object attached to the loop."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:243
2016-10-30 09:46:26 +00:00
msgid ""
"This is a preferred way to create futures in asyncio, as event loop "
"implementations can provide alternative implementations of the Future class "
"(with better performance or instrumentation)."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:251
2016-10-30 09:46:26 +00:00
msgid "Tasks"
msgstr "Tâches"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:255
2016-10-30 09:46:26 +00:00
msgid ""
"Schedule the execution of a :ref:`coroutine object <coroutine>`: wrap it in "
"a future. Return a :class:`Task` object."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:258
2016-10-30 09:46:26 +00:00
msgid ""
"Third-party event loops can use their own subclass of :class:`Task` for "
"interoperability. In this case, the result type is a subclass of :class:"
"`Task`."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:266
2016-10-30 09:46:26 +00:00
msgid ""
"Set a task factory that will be used by :meth:`AbstractEventLoop."
"create_task`."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:269
2016-10-30 09:46:26 +00:00
msgid "If *factory* is ``None`` the default task factory will be set."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:271
2016-10-30 09:46:26 +00:00
msgid ""
"If *factory* is a *callable*, it should have a signature matching ``(loop, "
"coro)``, where *loop* will be a reference to the active event loop, *coro* "
"will be a coroutine object. The callable must return an :class:`asyncio."
"Future` compatible object."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:280
2016-10-30 09:46:26 +00:00
msgid "Return a task factory, or ``None`` if the default one is in use."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:286
2016-10-30 09:46:26 +00:00
msgid "Creating connections"
msgstr "Créer des connections"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:290
2016-10-30 09:46:26 +00:00
msgid ""
"Create a streaming transport connection to a given Internet *host* and "
"*port*: socket family :py:data:`~socket.AF_INET` or :py:data:`~socket."
"AF_INET6` depending on *host* (or *family* if specified), socket type :py:"
"data:`~socket.SOCK_STREAM`. *protocol_factory* must be a callable returning "
"a :ref:`protocol <asyncio-protocol>` instance."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:296
#: ../Doc/library/asyncio-eventloop.rst:378
#: ../Doc/library/asyncio-eventloop.rst:431
2016-10-30 09:46:26 +00:00
msgid ""
2018-06-28 13:32:56 +00:00
"This method will try to establish the connection in the background. When "
"successful, it returns a ``(transport, protocol)`` pair."
2016-10-30 09:46:26 +00:00
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:299
2016-10-30 09:46:26 +00:00
msgid "The chronological synopsis of the underlying operation is as follows:"
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:301
2016-10-30 09:46:26 +00:00
msgid ""
"The connection is established, and a :ref:`transport <asyncio-transport>` is "
"created to represent it."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:304
2016-10-30 09:46:26 +00:00
msgid ""
"*protocol_factory* is called without arguments and must return a :ref:"
"`protocol <asyncio-protocol>` instance."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:307
2016-10-30 09:46:26 +00:00
msgid ""
"The protocol instance is tied to the transport, and its :meth:"
"`connection_made` method is called."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:310
2016-10-30 09:46:26 +00:00
msgid ""
"The coroutine returns successfully with the ``(transport, protocol)`` pair."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:313
2016-10-30 09:46:26 +00:00
msgid ""
"The created transport is an implementation-dependent bidirectional stream."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:316
2016-10-30 09:46:26 +00:00
msgid ""
"*protocol_factory* can be any kind of callable, not necessarily a class. "
"For example, if you want to use a pre-created protocol instance, you can "
"pass ``lambda: my_protocol``."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:320
2016-10-30 09:46:26 +00:00
msgid "Options that change how the connection is created:"
msgstr "Options modifiant la création de la connexion :"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:322
2016-10-30 09:46:26 +00:00
msgid ""
"*ssl*: if given and not false, a SSL/TLS transport is created (by default a "
"plain TCP transport is created). If *ssl* is a :class:`ssl.SSLContext` "
"object, this context is used to create the transport; if *ssl* is :const:"
"`True`, a context with some unspecified default settings is used."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:328
2016-10-30 09:46:26 +00:00
msgid ":ref:`SSL/TLS security considerations <ssl-security>`"
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:330
2016-10-30 09:46:26 +00:00
msgid ""
"*server_hostname*, is only for use together with *ssl*, and sets or "
"overrides the hostname that the target server's certificate will be matched "
"against. By default the value of the *host* argument is used. If *host* is "
"empty, there is no default and you must pass a value for *server_hostname*. "
"If *server_hostname* is an empty string, hostname matching is disabled "
"(which is a serious security risk, allowing for man-in-the-middle-attacks)."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:338
2016-10-30 09:46:26 +00:00
msgid ""
"*family*, *proto*, *flags* are the optional address family, protocol and "
"flags to be passed through to getaddrinfo() for *host* resolution. If given, "
"these should all be integers from the corresponding :mod:`socket` module "
"constants."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:343
2016-10-30 09:46:26 +00:00
msgid ""
"*sock*, if given, should be an existing, already connected :class:`socket."
"socket` object to be used by the transport. If *sock* is given, none of "
"*host*, *port*, *family*, *proto*, *flags* and *local_addr* should be "
"specified."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:348
2016-10-30 09:46:26 +00:00
msgid ""
"*local_addr*, if given, is a ``(local_host, local_port)`` tuple used to bind "
"the socket to locally. The *local_host* and *local_port* are looked up "
"using getaddrinfo(), similarly to *host* and *port*."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:352
#: ../Doc/library/asyncio-eventloop.rst:560
#: ../Doc/library/asyncio-eventloop.rst:629
msgid ""
"*ssl_handshake_timeout* is (for an SSL connection) the time in seconds to "
"wait for the SSL handshake to complete before aborting the connection. "
"``60.0`` seconds if ``None`` (default)."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:358
#: ../Doc/library/asyncio-eventloop.rst:444
#: ../Doc/library/asyncio-eventloop.rst:568
msgid "The *ssl_handshake_timeout* parameter."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:362
#: ../Doc/library/asyncio-eventloop.rst:514
2016-10-30 09:46:26 +00:00
msgid "On Windows with :class:`ProactorEventLoop`, SSL/TLS is now supported."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:366
2016-10-30 09:46:26 +00:00
msgid ""
"The :func:`open_connection` function can be used to get a pair of (:class:"
"`StreamReader`, :class:`StreamWriter`) instead of a protocol."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:372
2016-10-30 09:46:26 +00:00
msgid ""
2018-06-28 13:32:56 +00:00
"Create datagram connection: socket family :py:data:`~socket.AF_INET`, :py:"
"data:`~socket.AF_INET6` or :py:data:`~socket.AF_UNIX` depending on *host* "
"(or *family* if specified), socket type :py:data:`~socket.SOCK_DGRAM`. "
"*protocol_factory* must be a callable returning a :ref:`protocol <asyncio-"
"protocol>` instance."
2016-10-30 09:46:26 +00:00
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:381
2016-10-30 09:46:26 +00:00
msgid "Options changing how the connection is created:"
msgstr "Options modifiant la création de la connexion :"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:383
2016-10-30 09:46:26 +00:00
msgid ""
"*local_addr*, if given, is a ``(local_host, local_port)`` tuple used to bind "
"the socket to locally. The *local_host* and *local_port* are looked up "
"using :meth:`getaddrinfo`."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:387
2016-10-30 09:46:26 +00:00
msgid ""
"*remote_addr*, if given, is a ``(remote_host, remote_port)`` tuple used to "
"connect the socket to a remote address. The *remote_host* and *remote_port* "
"are looked up using :meth:`getaddrinfo`."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:391
2016-10-30 09:46:26 +00:00
msgid ""
"*family*, *proto*, *flags* are the optional address family, protocol and "
"flags to be passed through to :meth:`getaddrinfo` for *host* resolution. If "
"given, these should all be integers from the corresponding :mod:`socket` "
"module constants."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:396
#: ../Doc/library/asyncio-eventloop.rst:488
2016-10-30 09:46:26 +00:00
msgid ""
"*reuse_address* tells the kernel to reuse a local socket in TIME_WAIT state, "
"without waiting for its natural timeout to expire. If not specified will "
"automatically be set to ``True`` on UNIX."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:401
2016-10-30 09:46:26 +00:00
msgid ""
"*reuse_port* tells the kernel to allow this endpoint to be bound to the same "
"port as other existing endpoints are bound to, so long as they all set this "
"flag when being created. This option is not supported on Windows and some "
"UNIX's. If the :py:data:`~socket.SO_REUSEPORT` constant is not defined then "
"this capability is unsupported."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:407
2016-10-30 09:46:26 +00:00
msgid ""
"*allow_broadcast* tells the kernel to allow this endpoint to send messages "
"to the broadcast address."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:410
2016-10-30 09:46:26 +00:00
msgid ""
"*sock* can optionally be specified in order to use a preexisting, already "
"connected, :class:`socket.socket` object to be used by the transport. If "
"specified, *local_addr* and *remote_addr* should be omitted (must be :const:"
"`None`)."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:415
2016-10-30 09:46:26 +00:00
msgid ""
"On Windows with :class:`ProactorEventLoop`, this method is not supported."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:417
2016-10-30 09:46:26 +00:00
msgid ""
"See :ref:`UDP echo client protocol <asyncio-udp-echo-client-protocol>` and :"
"ref:`UDP echo server protocol <asyncio-udp-echo-server-protocol>` examples."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:420
2018-06-10 09:32:30 +00:00
msgid ""
"The *family*, *proto*, *flags*, *reuse_address*, *reuse_port, "
"*allow_broadcast*, and *sock* parameters were added."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:426
2016-10-30 09:46:26 +00:00
msgid ""
"Create UNIX connection: socket family :py:data:`~socket.AF_UNIX`, socket "
"type :py:data:`~socket.SOCK_STREAM`. The :py:data:`~socket.AF_UNIX` socket "
"family is used to communicate between processes on the same machine "
"efficiently."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:434
#: ../Doc/library/asyncio-eventloop.rst:531
2017-04-02 20:14:06 +00:00
msgid ""
"*path* is the name of a UNIX domain socket, and is required unless a *sock* "
2018-06-28 13:32:56 +00:00
"parameter is specified. Abstract UNIX sockets, :class:`str`, :class:"
"`bytes`, and :class:`~pathlib.Path` paths are supported."
2017-04-02 20:14:06 +00:00
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:438
2016-10-30 09:46:26 +00:00
msgid ""
"See the :meth:`AbstractEventLoop.create_connection` method for parameters."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:440
#: ../Doc/library/asyncio-eventloop.rst:535
2016-10-30 09:46:26 +00:00
msgid "Availability: UNIX."
msgstr "Disponible sur : UNIX."
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:448
msgid "The *path* parameter can now be a :term:`path-like object`."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:452
2016-10-30 09:46:26 +00:00
msgid "Creating listening connections"
msgstr "Attendre des connections"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:456
2016-10-30 09:46:26 +00:00
msgid ""
"Create a TCP server (socket type :data:`~socket.SOCK_STREAM`) bound to "
"*host* and *port*."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:459
2016-10-30 09:46:26 +00:00
msgid ""
"Return a :class:`Server` object, its :attr:`~Server.sockets` attribute "
"contains created sockets. Use the :meth:`Server.close` method to stop the "
"server: close listening sockets."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:463
#: ../Doc/library/asyncio-eventloop.rst:552
#: ../Doc/library/asyncio-eventloop.rst:615
2016-10-30 09:46:26 +00:00
msgid "Parameters:"
msgstr "Paramètres :"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:465
2016-10-30 09:46:26 +00:00
msgid ""
"The *host* parameter can be a string, in that case the TCP server is bound "
"to *host* and *port*. The *host* parameter can also be a sequence of strings "
"and in that case the TCP server is bound to all hosts of the sequence. If "
"*host* is an empty string or ``None``, all interfaces are assumed and a list "
"of multiple sockets will be returned (most likely one for IPv4 and another "
"one for IPv6)."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:472
2016-10-30 09:46:26 +00:00
msgid ""
"*family* can be set to either :data:`socket.AF_INET` or :data:`~socket."
"AF_INET6` to force the socket to use IPv4 or IPv6. If not set it will be "
"determined from host (defaults to :data:`socket.AF_UNSPEC`)."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:476
2016-10-30 09:46:26 +00:00
msgid "*flags* is a bitmask for :meth:`getaddrinfo`."
msgstr "*flags* est un masque de bits pour :meth:`getaddrinfo`."
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:478
2016-10-30 09:46:26 +00:00
msgid ""
"*sock* can optionally be specified in order to use a preexisting socket "
"object. If specified, *host* and *port* should be omitted (must be :const:"
"`None`)."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:482
2016-10-30 09:46:26 +00:00
msgid ""
"*backlog* is the maximum number of queued connections passed to :meth:"
"`~socket.socket.listen` (defaults to 100)."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:485
#: ../Doc/library/asyncio-eventloop.rst:557
2016-10-30 09:46:26 +00:00
msgid ""
"*ssl* can be set to an :class:`~ssl.SSLContext` to enable SSL over the "
"accepted connections."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:493
2016-10-30 09:46:26 +00:00
msgid ""
"*reuse_port* tells the kernel to allow this endpoint to be bound to the same "
"port as other existing endpoints are bound to, so long as they all set this "
"flag when being created. This option is not supported on Windows."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:498
msgid ""
"*ssl_handshake_timeout* is (for an SSL server) the time in seconds to wait "
"for the SSL handshake to complete before aborting the connection. ``60.0`` "
"seconds if ``None`` (default)."
msgstr ""
2016-10-30 09:46:26 +00:00
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:502
msgid ""
"*start_serving* set to ``True`` (the default) causes the created server to "
"start accepting connections immediately. When set to ``False``, the user "
"should await on :meth:`Server.start_serving` or :meth:`Server.serve_forever` "
"to make the server to start accepting connections."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:510
msgid "*ssl_handshake_timeout* and *start_serving* parameters."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:518
2016-10-30 09:46:26 +00:00
msgid ""
"The function :func:`start_server` creates a (:class:`StreamReader`, :class:"
"`StreamWriter`) pair and calls back a function with this pair."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:523
2016-10-30 09:46:26 +00:00
msgid "The *host* parameter can now be a sequence of strings."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:528
2016-10-30 09:46:26 +00:00
msgid ""
"Similar to :meth:`AbstractEventLoop.create_server`, but specific to the "
"socket family :py:data:`~socket.AF_UNIX`."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:539
msgid "The *ssl_handshake_timeout* and *start_serving* parameters."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:543
msgid "The *path* parameter can now be a :class:`~pathlib.Path` object."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:547
2017-04-02 20:14:06 +00:00
msgid "Handle an accepted connection."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:549
2017-04-02 20:14:06 +00:00
msgid ""
"This is used by servers that accept connections outside of asyncio but that "
"use asyncio to handle them."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:554
2017-04-02 20:14:06 +00:00
msgid "*sock* is a preexisting socket object returned from an ``accept`` call."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:564
msgid "When completed it returns a ``(transport, protocol)`` pair."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:574
msgid "File Transferring"
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:580
2017-04-02 20:14:06 +00:00
msgid ""
2018-06-28 13:32:56 +00:00
"Send a *file* to *transport*, return the total number of bytes which were "
"sent."
2017-04-02 20:14:06 +00:00
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:583
msgid "The method uses high-performance :meth:`os.sendfile` if available."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:585
#: ../Doc/library/asyncio-eventloop.rst:780
msgid "*file* must be a regular file object opened in binary mode."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:587
#: ../Doc/library/asyncio-eventloop.rst:782
msgid ""
"*offset* tells from where to start reading the file. If specified, *count* "
"is the total number of bytes to transmit as opposed to sending the file "
"until EOF is reached. File position is updated on return or also in case of "
"error in which case :meth:`file.tell() <io.IOBase.tell>` can be used to "
"figure out the number of bytes which were sent."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:594
#: ../Doc/library/asyncio-eventloop.rst:789
msgid ""
"*fallback* set to ``True`` makes asyncio to manually read and send the file "
"when the platform does not support the sendfile syscall (e.g. Windows or SSL "
"socket on Unix)."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:598
#: ../Doc/library/asyncio-eventloop.rst:793
msgid ""
"Raise :exc:`SendfileNotAvailableError` if the system does not support "
"*sendfile* syscall and *fallback* is ``False``."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:605
msgid "TLS Upgrade"
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:609
#, fuzzy
msgid "Upgrades an existing connection to TLS."
msgstr "Attendre des connections"
#: ../Doc/library/asyncio-eventloop.rst:611
msgid ""
"Returns a new transport instance, that the *protocol* must start using "
"immediately after the *await*. The *transport* instance passed to the "
"*start_tls* method should never be used again."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:617
msgid ""
"*transport* and *protocol* instances that methods like :meth:"
"`~AbstractEventLoop.create_server` and :meth:`~AbstractEventLoop."
"create_connection` return."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:621
msgid "*sslcontext*: a configured instance of :class:`~ssl.SSLContext`."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:623
msgid ""
"*server_side* pass ``True`` when a server-side connection is being upgraded "
"(like the one created by :meth:`~AbstractEventLoop.create_server`)."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:626
msgid ""
"*server_hostname*: sets or overrides the host name that the target server's "
"certificate will be matched against."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:637
2016-10-30 09:46:26 +00:00
msgid "Watch file descriptors"
msgstr "Surveiller des descripteurs de fichiers"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:639
2016-10-30 09:46:26 +00:00
msgid ""
"On Windows with :class:`SelectorEventLoop`, only socket handles are "
"supported (ex: pipe file descriptors are not supported)."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:642
2016-10-30 09:46:26 +00:00
msgid ""
"On Windows with :class:`ProactorEventLoop`, these methods are not supported."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:646
2016-10-30 09:46:26 +00:00
msgid ""
"Start watching the file descriptor for read availability and then call the "
"*callback* with specified arguments."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:654
2016-10-30 09:46:26 +00:00
msgid "Stop watching the file descriptor for read availability."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:658
2016-10-30 09:46:26 +00:00
msgid ""
"Start watching the file descriptor for write availability and then call the "
"*callback* with specified arguments."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:666
2016-10-30 09:46:26 +00:00
msgid "Stop watching the file descriptor for write availability."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:668
2016-10-30 09:46:26 +00:00
msgid ""
"The :ref:`watch a file descriptor for read events <asyncio-watch-read-"
"event>` example uses the low-level :meth:`AbstractEventLoop.add_reader` "
"method to register the file descriptor of a socket."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:674
2016-10-30 09:46:26 +00:00
msgid "Low-level socket operations"
msgstr "Opérations bas niveau sur les *socket*"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:678
2016-10-30 09:46:26 +00:00
msgid ""
"Receive data from the socket. Modeled after blocking :meth:`socket.socket."
"recv` method."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:681
2016-10-30 09:46:26 +00:00
msgid ""
"The return value is a bytes object representing the data received. The "
"maximum amount of data to be received at once is specified by *nbytes*."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:685
#: ../Doc/library/asyncio-eventloop.rst:701
#: ../Doc/library/asyncio-eventloop.rst:717
#: ../Doc/library/asyncio-eventloop.rst:730
2016-10-30 09:46:26 +00:00
msgid ""
"With :class:`SelectorEventLoop` event loop, the socket *sock* must be non-"
"blocking."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:688
#: ../Doc/library/asyncio-eventloop.rst:759
msgid ""
"Even though the method was always documented as a coroutine method, before "
"Python 3.7 it returned a :class:`Future`. Since Python 3.7, this is an "
"``async def`` method."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:695
msgid ""
"Receive data from the socket. Modeled after blocking :meth:`socket.socket."
"recv_into` method."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:698
msgid ""
"The received data is written into *buf* (a writable buffer). The return "
"value is the number of bytes written."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:708
2016-10-30 09:46:26 +00:00
msgid ""
"Send data to the socket. Modeled after blocking :meth:`socket.socket."
"sendall` method."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:711
2016-10-30 09:46:26 +00:00
msgid ""
"The socket must be connected to a remote socket. This method continues to "
"send data from *data* until either all data has been sent or an error "
"occurs. ``None`` is returned on success. On error, an exception is raised, "
"and there is no way to determine how much data, if any, was successfully "
"processed by the receiving end of the connection."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:720
msgid ""
"Even though the method was always documented as a coroutine method, before "
"Python 3.7 it returned an :class:`Future`. Since Python 3.7, this is an "
"``async def`` method."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:727
2016-10-30 09:46:26 +00:00
msgid ""
"Connect to a remote socket at *address*. Modeled after blocking :meth:"
"`socket.socket.connect` method."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:733
2016-10-30 09:46:26 +00:00
msgid ""
"``address`` no longer needs to be resolved. ``sock_connect`` will try to "
"check if the *address* is already resolved by calling :func:`socket."
"inet_pton`. If not, :meth:`AbstractEventLoop.getaddrinfo` will be used to "
"resolve the *address*."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:742
2016-10-30 09:46:26 +00:00
msgid ""
":meth:`AbstractEventLoop.create_connection` and :func:`asyncio."
"open_connection() <open_connection>`."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:748
2016-10-30 09:46:26 +00:00
msgid ""
"Accept a connection. Modeled after blocking :meth:`socket.socket.accept`."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:751
2016-10-30 09:46:26 +00:00
msgid ""
"The socket must be bound to an address and listening for connections. The "
"return value is a pair ``(conn, address)`` where *conn* is a *new* socket "
"object usable to send and receive data on the connection, and *address* is "
"the address bound to the socket on the other end of the connection."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:757
2016-10-30 09:46:26 +00:00
msgid "The socket *sock* must be non-blocking."
msgstr "La *socket* *sock* ne soit pas être bloquante."
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:766
2016-10-30 09:46:26 +00:00
msgid ":meth:`AbstractEventLoop.create_server` and :func:`start_server`."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:772
msgid ""
"Send a file using high-performance :mod:`os.sendfile` if possible and return "
"the total number of bytes which were sent."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:775
msgid "Asynchronous version of :meth:`socket.socket.sendfile`."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:777
msgid ""
"*sock* must be non-blocking :class:`~socket.socket` of :const:`socket."
"SOCK_STREAM` type."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:800
2016-10-30 09:46:26 +00:00
msgid "Resolve host name"
msgstr "Résout le nom d'hôte"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:804
2016-10-30 09:46:26 +00:00
msgid ""
"This method is a :ref:`coroutine <coroutine>`, similar to :meth:`socket."
"getaddrinfo` function but non-blocking."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:809
2016-10-30 09:46:26 +00:00
msgid ""
"This method is a :ref:`coroutine <coroutine>`, similar to :meth:`socket."
"getnameinfo` function but non-blocking."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:812
msgid ""
"Both *getaddrinfo* and *getnameinfo* methods were always documented to "
"return a coroutine, but prior to Python 3.7 they were, in fact, returning :"
"class:`asyncio.Future` objects. Starting with Python 3.7 both methods are "
"coroutines."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:820
2016-10-30 09:46:26 +00:00
msgid "Connect pipes"
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:822
2016-10-30 09:46:26 +00:00
msgid ""
"On Windows with :class:`SelectorEventLoop`, these methods are not supported. "
"Use :class:`ProactorEventLoop` to support pipes on Windows."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:827
2016-10-30 09:46:26 +00:00
msgid "Register read pipe in eventloop."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:829
2016-10-30 09:46:26 +00:00
msgid ""
"*protocol_factory* should instantiate object with :class:`Protocol` "
"interface. *pipe* is a :term:`file-like object <file object>`. Return pair "
"``(transport, protocol)``, where *transport* supports the :class:"
"`ReadTransport` interface."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:834
#: ../Doc/library/asyncio-eventloop.rst:846
2016-10-30 09:46:26 +00:00
msgid ""
"With :class:`SelectorEventLoop` event loop, the *pipe* is set to non-"
"blocking mode."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:839
2016-10-30 09:46:26 +00:00
msgid "Register write pipe in eventloop."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:841
2016-10-30 09:46:26 +00:00
msgid ""
"*protocol_factory* should instantiate object with :class:`BaseProtocol` "
"interface. *pipe* is :term:`file-like object <file object>`. Return pair "
"``(transport, protocol)``, where *transport* supports :class:"
"`WriteTransport` interface."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:851
2016-10-30 09:46:26 +00:00
msgid ""
"The :meth:`AbstractEventLoop.subprocess_exec` and :meth:`AbstractEventLoop."
"subprocess_shell` methods."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:856
2016-10-30 09:46:26 +00:00
msgid "UNIX signals"
msgstr "Signaux UNIX"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:858
2016-10-30 09:46:26 +00:00
msgid "Availability: UNIX only."
msgstr "Disponibilité : UNIX seulement."
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:862
2016-10-30 09:46:26 +00:00
msgid "Add a handler for a signal."
msgstr "Ajouter un gestionnaire (*handler*) pour un signal."
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:864
2016-10-30 09:46:26 +00:00
msgid ""
"Raise :exc:`ValueError` if the signal number is invalid or uncatchable. "
"Raise :exc:`RuntimeError` if there is a problem setting up the handler."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:872
2016-10-30 09:46:26 +00:00
msgid "Remove a handler for a signal."
msgstr "Supprimer un *handler* pour un signal."
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:874
2016-10-30 09:46:26 +00:00
msgid "Return ``True`` if a signal handler was removed, ``False`` if not."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:878
2016-10-30 09:46:26 +00:00
msgid "The :mod:`signal` module."
msgstr "Le module :mod:`signal`."
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:882
2016-10-30 09:46:26 +00:00
msgid "Executor"
msgstr "Exécuteur"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:884
2016-10-30 09:46:26 +00:00
msgid ""
"Call a function in an :class:`~concurrent.futures.Executor` (pool of threads "
"or pool of processes). By default, an event loop uses a thread pool executor "
"(:class:`~concurrent.futures.ThreadPoolExecutor`)."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:890
2016-10-30 09:46:26 +00:00
msgid "Arrange for a *func* to be called in the specified executor."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:892
2016-10-30 09:46:26 +00:00
msgid ""
"The *executor* argument should be an :class:`~concurrent.futures.Executor` "
"instance. The default executor is used if *executor* is ``None``."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:895
2016-10-30 09:46:26 +00:00
msgid ""
":ref:`Use functools.partial to pass keywords to the *func* <asyncio-pass-"
"keywords>`."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:898
msgid "This method returns a :class:`asyncio.Future` object."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:900
2016-10-30 09:46:26 +00:00
msgid ""
":meth:`BaseEventLoop.run_in_executor` no longer configures the "
"``max_workers`` of the thread pool executor it creates, instead leaving it "
"up to the thread pool executor (:class:`~concurrent.futures."
"ThreadPoolExecutor`) to set the default."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:909
2016-10-30 09:46:26 +00:00
msgid "Set the default executor used by :meth:`run_in_executor`."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:913
2016-10-30 09:46:26 +00:00
msgid "Error Handling API"
msgstr "API de gestion d'erreur"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:915
2016-10-30 09:46:26 +00:00
msgid "Allows customizing how exceptions are handled in the event loop."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:919
2016-10-30 09:46:26 +00:00
msgid "Set *handler* as the new event loop exception handler."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:921
2016-10-30 09:46:26 +00:00
msgid "If *handler* is ``None``, the default exception handler will be set."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:924
2016-10-30 09:46:26 +00:00
msgid ""
"If *handler* is a callable object, it should have a matching signature to "
"``(loop, context)``, where ``loop`` will be a reference to the active event "
"loop, ``context`` will be a ``dict`` object (see :meth:"
"`call_exception_handler` documentation for details about context)."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:932
2016-10-30 09:46:26 +00:00
msgid "Return the exception handler, or ``None`` if the default one is in use."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:939
2016-10-30 09:46:26 +00:00
msgid "Default exception handler."
msgstr "Gestionnaire d'exception par défaut."
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:941
2016-10-30 09:46:26 +00:00
msgid ""
"This is called when an exception occurs and no exception handler is set, and "
"can be called by a custom exception handler that wants to defer to the "
"default behavior."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:945
2016-10-30 09:46:26 +00:00
msgid ""
"*context* parameter has the same meaning as in :meth:"
"`call_exception_handler`."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:950
2016-10-30 09:46:26 +00:00
msgid "Call the current event loop exception handler."
msgstr ""
"Appelle le gestionnaire d'exception de la boucle d'évènements actuelle."
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:952
2016-10-30 09:46:26 +00:00
msgid ""
"*context* is a ``dict`` object containing the following keys (new keys may "
"be introduced later):"
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:955
2016-10-30 09:46:26 +00:00
msgid "'message': Error message;"
msgstr "``message`` : Message d'erreur ;"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:956
2016-10-30 09:46:26 +00:00
msgid "'exception' (optional): Exception object;"
msgstr "``exception`` (optionnel): Un objet exception ;"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:957
2016-10-30 09:46:26 +00:00
msgid "'future' (optional): :class:`asyncio.Future` instance;"
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:958
2016-10-30 09:46:26 +00:00
msgid "'handle' (optional): :class:`asyncio.Handle` instance;"
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:959
2016-10-30 09:46:26 +00:00
msgid "'protocol' (optional): :ref:`Protocol <asyncio-protocol>` instance;"
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:960
2016-10-30 09:46:26 +00:00
msgid "'transport' (optional): :ref:`Transport <asyncio-transport>` instance;"
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:961
2016-10-30 09:46:26 +00:00
msgid "'socket' (optional): :class:`socket.socket` instance."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:965
2016-10-30 09:46:26 +00:00
msgid ""
"Note: this method should not be overloaded in subclassed event loops. For "
"any custom exception handling, use :meth:`set_exception_handler()` method."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:970
2016-10-30 09:46:26 +00:00
msgid "Debug mode"
msgstr "Mode débug"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:974
2016-10-30 09:46:26 +00:00
msgid "Get the debug mode (:class:`bool`) of the event loop."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:976
2016-10-30 09:46:26 +00:00
msgid ""
"The default value is ``True`` if the environment variable :envvar:"
"`PYTHONASYNCIODEBUG` is set to a non-empty string, ``False`` otherwise."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:984
2016-10-30 09:46:26 +00:00
msgid "Set the debug mode of the event loop."
msgstr "Active le mode débug pour la boucle d'évènements."
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:990
2016-10-30 09:46:26 +00:00
msgid "The :ref:`debug mode of asyncio <asyncio-debug-mode>`."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:993
2016-10-30 09:46:26 +00:00
msgid "Server"
msgstr "Serveur"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:997
2016-10-30 09:46:26 +00:00
msgid "Server listening on sockets."
msgstr "Serveur écoutant sur des *sockets*."
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:999
msgid ""
"Object created by :meth:`AbstractEventLoop.create_server`, :meth:"
"`AbstractEventLoop.create_unix_server`, :func:`start_server`, and :func:"
"`start_unix_server` functions. Don't instantiate the class directly."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:1004
2016-10-30 09:46:26 +00:00
msgid ""
2018-06-28 13:32:56 +00:00
"*Server* objects are asynchronous context managers. When used in an ``async "
"with`` statement, it's guaranteed that the Server object is closed and not "
"accepting new connections when the ``async with`` statement is completed::"
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:1017
msgid "Server object is an asynchronous context manager since Python 3.7."
2016-10-30 09:46:26 +00:00
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:1022
2016-10-30 09:46:26 +00:00
msgid ""
"Stop serving: close listening sockets and set the :attr:`sockets` attribute "
"to ``None``."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:1025
2016-10-30 09:46:26 +00:00
msgid ""
"The sockets that represent existing incoming client connections are left "
"open."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:1028
2016-10-30 09:46:26 +00:00
msgid ""
"The server is closed asynchronously, use the :meth:`wait_closed` coroutine "
"to wait until the server is closed."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:1033
msgid "Gives the event loop associated with the server object."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:1039
#, fuzzy
msgid "Start accepting connections."
msgstr "Créer des connections"
#: ../Doc/library/asyncio-eventloop.rst:1041
msgid ""
"This method is idempotent, so it can be called when the server is already "
"being serving."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:1044
msgid ""
"The new *start_serving* keyword-only parameter to :meth:`AbstractEventLoop."
"create_server` and :meth:`asyncio.start_server` allows to create a Server "
"object that is not accepting connections right away. In which case this "
"method, or :meth:`Server.serve_forever` can be used to make the Server "
"object to start accepting connections."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:1055
msgid ""
"Start accepting connections until the coroutine is cancelled. Cancellation "
"of ``serve_forever`` task causes the server to be closed."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:1059
msgid ""
"This method can be called if the server is already accepting connections. "
"Only one ``serve_forever`` task can exist per one *Server* object."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:1063
msgid "Example::"
msgstr "Exemple ::"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:1081
#, fuzzy
msgid "Return ``True`` if the server is accepting new connections."
msgstr "Donne ``True`` si la boucle d'évènements est fermée."
#: ../Doc/library/asyncio-eventloop.rst:1087
2016-10-30 09:46:26 +00:00
msgid "Wait until the :meth:`close` method completes."
msgstr "Attends que la méthode :meth:`close` se termine."
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:1091
2016-10-30 09:46:26 +00:00
msgid ""
"List of :class:`socket.socket` objects the server is listening to, or "
"``None`` if the server is closed."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:1094
msgid ""
"Prior to Python 3.7 ``Server.sockets`` used to return the internal list of "
"server's sockets directly. In 3.7 a copy of that list is returned."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:1101
2016-10-30 09:46:26 +00:00
msgid "Handle"
msgstr "Handle"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:1105
2016-10-30 09:46:26 +00:00
msgid ""
"A callback wrapper object returned by :func:`AbstractEventLoop.call_soon`, :"
2018-06-28 13:32:56 +00:00
"func:`AbstractEventLoop.call_soon_threadsafe`."
2016-10-30 09:46:26 +00:00
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:1110
2016-10-30 09:46:26 +00:00
msgid ""
"Cancel the call. If the callback is already canceled or executed, this "
"method has no effect."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:1115
#, fuzzy
msgid "Return ``True`` if the call was cancelled."
msgstr "Donne ``True`` si la boucle d'évènements est fermée."
#: ../Doc/library/asyncio-eventloop.rst:1121
msgid ""
"A callback wrapper object returned by :func:`AbstractEventLoop.call_later`, "
"and :func:`AbstractEventLoop.call_at`."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:1124
msgid "The class is inherited from :class:`Handle`."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:1128
msgid "Return a scheduled callback time as :class:`float` seconds."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:1130
msgid ""
"The time is an absolute timestamp, using the same time reference as :meth:"
"`AbstractEventLoop.time`."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:1137
msgid "SendfileNotAvailableError"
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:1142
msgid "Sendfile syscall is not available, subclass of :exc:`RuntimeError`."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:1144
msgid ""
"Raised if the OS does not support sendfile syscall for given socket or file "
"type."
msgstr ""
#: ../Doc/library/asyncio-eventloop.rst:1149
2016-10-30 09:46:26 +00:00
msgid "Event loop examples"
msgstr "Exemples de boucles d'évènements"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:1154
2016-10-30 09:46:26 +00:00
msgid "Hello World with call_soon()"
msgstr "\"Hello World\" avec ``call_soon()``"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:1156
2016-10-30 09:46:26 +00:00
msgid ""
"Example using the :meth:`AbstractEventLoop.call_soon` method to schedule a "
"callback. The callback displays ``\"Hello World\"`` and then stops the event "
"loop::"
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:1177
2016-10-30 09:46:26 +00:00
msgid ""
"The :ref:`Hello World coroutine <asyncio-hello-world-coroutine>` example "
"uses a :ref:`coroutine <coroutine>`."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:1184
2016-10-30 09:46:26 +00:00
msgid "Display the current date with call_later()"
msgstr "Afficher la date actuelle avec ``call_later()``"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:1186
2016-10-30 09:46:26 +00:00
msgid ""
"Example of callback displaying the current date every second. The callback "
"uses the :meth:`AbstractEventLoop.call_later` method to reschedule itself "
"during 5 seconds, and then stops the event loop::"
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:1212
2016-10-30 09:46:26 +00:00
msgid ""
"The :ref:`coroutine displaying the current date <asyncio-date-coroutine>` "
"example uses a :ref:`coroutine <coroutine>`."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:1220
2016-10-30 09:46:26 +00:00
msgid "Watch a file descriptor for read events"
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:1222
2016-10-30 09:46:26 +00:00
msgid ""
"Wait until a file descriptor received some data using the :meth:"
"`AbstractEventLoop.add_reader` method and then close the event loop::"
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:1256
2016-10-30 09:46:26 +00:00
msgid ""
"The :ref:`register an open socket to wait for data using a protocol <asyncio-"
"register-socket>` example uses a low-level protocol created by the :meth:"
"`AbstractEventLoop.create_connection` method."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:1260
2016-10-30 09:46:26 +00:00
msgid ""
"The :ref:`register an open socket to wait for data using streams <asyncio-"
"register-socket-streams>` example uses high-level streams created by the :"
"func:`open_connection` function in a coroutine."
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:1266
2016-10-30 09:46:26 +00:00
msgid "Set signal handlers for SIGINT and SIGTERM"
msgstr "Définit les gestionnaires de signaux pour *SIGINT* et *SIGTERM*"
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:1268
2016-10-30 09:46:26 +00:00
msgid ""
"Register handlers for signals :py:data:`SIGINT` and :py:data:`SIGTERM` using "
"the :meth:`AbstractEventLoop.add_signal_handler` method::"
msgstr ""
2018-06-28 13:32:56 +00:00
#: ../Doc/library/asyncio-eventloop.rst:1292
2016-10-30 09:46:26 +00:00
msgid "This example only works on UNIX."
msgstr "Cet exemple fonctionne seulement sur UNIX."
2018-06-28 13:32:56 +00:00
#~ msgid "This method is a :ref:`coroutine <coroutine>`."
#~ msgstr "Cette méthode est une :ref:`coroutine <coroutine>`."