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

152 lines
4.5 KiB
Plaintext
Raw Permalink Normal View History

2018-10-13 15:54:03 +00:00
# Copyright (C) 2001-2018, Python Software Foundation
2018-11-29 20:30:02 +00:00
# For licence information, see README file.
2018-10-13 15:54:03 +00:00
#
msgid ""
msgstr ""
2019-12-05 22:15:54 +00:00
"Project-Id-Version: Python 3\n"
2018-10-13 15:54:03 +00:00
"Report-Msgid-Bugs-To: \n"
2022-03-23 17:40:12 +00:00
"POT-Creation-Date: 2022-03-23 18:39+0100\n"
2018-10-13 15:54:03 +00:00
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
2018-11-29 20:30:02 +00:00
"Language-Team: FRENCH <traductions@lists.afpy.org>\n"
"Language: fr\n"
2018-10-13 15:54:03 +00:00
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: library/asyncio-platforms.rst:9
2018-10-13 15:54:03 +00:00
msgid "Platform Support"
msgstr ""
#: library/asyncio-platforms.rst:11
2018-10-13 15:54:03 +00:00
msgid ""
"The :mod:`asyncio` module is designed to be portable, but some platforms "
"have subtle differences and limitations due to the platforms' underlying "
"architecture and capabilities."
msgstr ""
#: library/asyncio-platforms.rst:17
2018-10-13 15:54:03 +00:00
msgid "All Platforms"
msgstr ""
#: library/asyncio-platforms.rst:19
2018-10-13 15:54:03 +00:00
msgid ""
":meth:`loop.add_reader` and :meth:`loop.add_writer` cannot be used to "
"monitor file I/O."
msgstr ""
#: library/asyncio-platforms.rst:24
2018-10-13 15:54:03 +00:00
msgid "Windows"
msgstr "Windows"
2018-10-13 15:54:03 +00:00
#: library/asyncio-platforms.rst:26
msgid ""
"**Source code:** :source:`Lib/asyncio/proactor_events.py`, :source:`Lib/"
"asyncio/windows_events.py`, :source:`Lib/asyncio/windows_utils.py`"
msgstr ""
#: library/asyncio-platforms.rst:34
2019-09-04 09:35:23 +00:00
msgid "On Windows, :class:`ProactorEventLoop` is now the default event loop."
msgstr ""
#: library/asyncio-platforms.rst:36
2018-10-13 15:54:03 +00:00
msgid "All event loops on Windows do not support the following methods:"
msgstr ""
#: library/asyncio-platforms.rst:38
2018-10-13 15:54:03 +00:00
msgid ""
":meth:`loop.create_unix_connection` and :meth:`loop.create_unix_server` are "
"not supported. The :data:`socket.AF_UNIX` socket family is specific to Unix."
msgstr ""
#: library/asyncio-platforms.rst:42
2018-10-13 15:54:03 +00:00
msgid ""
":meth:`loop.add_signal_handler` and :meth:`loop.remove_signal_handler` are "
"not supported."
msgstr ""
#: library/asyncio-platforms.rst:45
2018-10-13 15:54:03 +00:00
msgid ":class:`SelectorEventLoop` has the following limitations:"
msgstr ""
#: library/asyncio-platforms.rst:47
2018-10-13 15:54:03 +00:00
msgid ""
":class:`~selectors.SelectSelector` is used to wait on socket events: it "
"supports sockets and is limited to 512 sockets."
msgstr ""
#: library/asyncio-platforms.rst:50
2018-10-13 15:54:03 +00:00
msgid ""
":meth:`loop.add_reader` and :meth:`loop.add_writer` only accept socket "
"handles (e.g. pipe file descriptors are not supported)."
msgstr ""
#: library/asyncio-platforms.rst:53
2018-10-13 15:54:03 +00:00
msgid ""
"Pipes are not supported, so the :meth:`loop.connect_read_pipe` and :meth:"
"`loop.connect_write_pipe` methods are not implemented."
msgstr ""
#: library/asyncio-platforms.rst:56
2018-10-13 15:54:03 +00:00
msgid ""
":ref:`Subprocesses <asyncio-subprocess>` are not supported, i.e. :meth:`loop."
"subprocess_exec` and :meth:`loop.subprocess_shell` methods are not "
"implemented."
msgstr ""
#: library/asyncio-platforms.rst:60
2018-10-13 15:54:03 +00:00
msgid ":class:`ProactorEventLoop` has the following limitations:"
msgstr ""
#: library/asyncio-platforms.rst:62
2018-10-13 15:54:03 +00:00
msgid ""
"The :meth:`loop.add_reader` and :meth:`loop.add_writer` methods are not "
"supported."
msgstr ""
#: library/asyncio-platforms.rst:65
2018-10-13 15:54:03 +00:00
msgid ""
"The resolution of the monotonic clock on Windows is usually around 15.6 "
2022-03-23 17:40:12 +00:00
"milliseconds. The best resolution is 0.5 milliseconds. The resolution "
"depends on the hardware (availability of `HPET <https://en.wikipedia.org/"
"wiki/High_Precision_Event_Timer>`_) and on the Windows configuration."
2018-10-13 15:54:03 +00:00
msgstr ""
#: library/asyncio-platforms.rst:75
2018-10-13 15:54:03 +00:00
msgid "Subprocess Support on Windows"
msgstr ""
#: library/asyncio-platforms.rst:77
2018-10-13 15:54:03 +00:00
msgid ""
2019-09-04 09:35:23 +00:00
"On Windows, the default event loop :class:`ProactorEventLoop` supports "
"subprocesses, whereas :class:`SelectorEventLoop` does not."
2018-10-13 15:54:03 +00:00
msgstr ""
#: library/asyncio-platforms.rst:80
2018-10-13 15:54:03 +00:00
msgid ""
"The :meth:`policy.set_child_watcher() <AbstractEventLoopPolicy."
"set_child_watcher>` function is also not supported, as :class:"
"`ProactorEventLoop` has a different mechanism to watch child processes."
msgstr ""
#: library/asyncio-platforms.rst:87
2018-10-13 15:54:03 +00:00
msgid "macOS"
msgstr "macOS"
2018-10-13 15:54:03 +00:00
#: library/asyncio-platforms.rst:89
2018-10-13 15:54:03 +00:00
msgid "Modern macOS versions are fully supported."
msgstr ""
#: library/asyncio-platforms.rst:92
2018-10-13 15:54:03 +00:00
msgid "macOS <= 10.8"
msgstr ""
#: library/asyncio-platforms.rst:93
2018-10-13 15:54:03 +00:00
msgid ""
"On macOS 10.6, 10.7 and 10.8, the default event loop uses :class:`selectors."
"KqueueSelector`, which does not support character devices on these "
"versions. The :class:`SelectorEventLoop` can be manually configured to use :"
"class:`~selectors.SelectSelector` or :class:`~selectors.PollSelector` to "
"support character devices on these older versions of macOS. Example::"
msgstr ""