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

149 lines
4.5 KiB
Plaintext
Raw Normal View History

2018-10-13 15:54:03 +00:00
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2018, Python Software Foundation
# 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.7\n"
"Report-Msgid-Bugs-To: \n"
2018-11-29 15:13:39 +00:00
"POT-Creation-Date: 2018-11-29 16:06+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"
"Language-Team: LANGUAGE <LL@li.org>\n"
2018-11-29 15:13:39 +00:00
"Language: \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"
#: ../Doc/library/asyncio-platforms.rst:9
msgid "Platform Support"
msgstr ""
#: ../Doc/library/asyncio-platforms.rst:11
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 ""
#: ../Doc/library/asyncio-platforms.rst:17
msgid "All Platforms"
msgstr ""
#: ../Doc/library/asyncio-platforms.rst:19
msgid ""
":meth:`loop.add_reader` and :meth:`loop.add_writer` cannot be used to "
"monitor file I/O."
msgstr ""
#: ../Doc/library/asyncio-platforms.rst:24
msgid "Windows"
msgstr "Windows"
2018-10-13 15:54:03 +00:00
#: ../Doc/library/asyncio-platforms.rst:26
msgid "All event loops on Windows do not support the following methods:"
msgstr ""
#: ../Doc/library/asyncio-platforms.rst:28
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 ""
#: ../Doc/library/asyncio-platforms.rst:32
msgid ""
":meth:`loop.add_signal_handler` and :meth:`loop.remove_signal_handler` are "
"not supported."
msgstr ""
#: ../Doc/library/asyncio-platforms.rst:35
msgid ":class:`SelectorEventLoop` has the following limitations:"
msgstr ""
#: ../Doc/library/asyncio-platforms.rst:37
msgid ""
":class:`~selectors.SelectSelector` is used to wait on socket events: it "
"supports sockets and is limited to 512 sockets."
msgstr ""
#: ../Doc/library/asyncio-platforms.rst:40
msgid ""
":meth:`loop.add_reader` and :meth:`loop.add_writer` only accept socket "
"handles (e.g. pipe file descriptors are not supported)."
msgstr ""
#: ../Doc/library/asyncio-platforms.rst:43
msgid ""
"Pipes are not supported, so the :meth:`loop.connect_read_pipe` and :meth:"
"`loop.connect_write_pipe` methods are not implemented."
msgstr ""
#: ../Doc/library/asyncio-platforms.rst:46
msgid ""
":ref:`Subprocesses <asyncio-subprocess>` are not supported, i.e. :meth:`loop."
"subprocess_exec` and :meth:`loop.subprocess_shell` methods are not "
"implemented."
msgstr ""
#: ../Doc/library/asyncio-platforms.rst:50
msgid ":class:`ProactorEventLoop` has the following limitations:"
msgstr ""
#: ../Doc/library/asyncio-platforms.rst:52
msgid "The :meth:`loop.create_datagram_endpoint` method is not supported."
msgstr ""
#: ../Doc/library/asyncio-platforms.rst:55
msgid ""
"The :meth:`loop.add_reader` and :meth:`loop.add_writer` methods are not "
"supported."
msgstr ""
#: ../Doc/library/asyncio-platforms.rst:58
msgid ""
"The resolution of the monotonic clock on Windows is usually around 15.6 "
"msec. The best resolution is 0.5 msec. The resolution depends on the "
"hardware (availability of `HPET <https://en.wikipedia.org/wiki/"
"High_Precision_Event_Timer>`_) and on the Windows configuration."
msgstr ""
#: ../Doc/library/asyncio-platforms.rst:68
msgid "Subprocess Support on Windows"
msgstr ""
#: ../Doc/library/asyncio-platforms.rst:70
msgid ""
":class:`SelectorEventLoop` on Windows does not support subproceses. On "
"Windows, :class:`ProactorEventLoop` should be used instead::"
msgstr ""
#: ../Doc/library/asyncio-platforms.rst:81
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 ""
#: ../Doc/library/asyncio-platforms.rst:88
msgid "macOS"
msgstr ""
#: ../Doc/library/asyncio-platforms.rst:90
msgid "Modern macOS versions are fully supported."
msgstr ""
#: ../Doc/library/asyncio-platforms.rst:93
msgid "macOS <= 10.8"
msgstr ""
#: ../Doc/library/asyncio-platforms.rst:94
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 ""