python-docs-fr/library/asyncio.po

99 lines
3.1 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"
2017-04-02 20:14:06 +00:00
"POT-Creation-Date: 2017-04-02 22:11+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.rst:2
2017-04-02 20:14:06 +00:00
msgid ":mod:`asyncio` --- Asynchronous I/O, event loop, coroutines and tasks"
2016-10-30 09:46:26 +00:00
msgstr ""
#: ../Doc/library/asyncio.rst:9
msgid "**Source code:** :source:`Lib/asyncio/`"
msgstr "**Code source :** :source:`Lib/asyncio/`"
#: ../Doc/library/asyncio.rst:13
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 ""
2017-04-02 20:14:06 +00:00
#: ../Doc/library/asyncio.rst:18
2016-10-30 09:46:26 +00:00
msgid ""
"a pluggable :ref:`event loop <asyncio-event-loop>` with various system-"
"specific implementations;"
msgstr ""
2017-04-02 20:14:06 +00:00
#: ../Doc/library/asyncio.rst:21
2016-10-30 09:46:26 +00:00
msgid ""
":ref:`transport <asyncio-transport>` and :ref:`protocol <asyncio-protocol>` "
"abstractions (similar to those in `Twisted <https://twistedmatrix.com/trac/"
">`_);"
msgstr ""
2017-04-02 20:14:06 +00:00
#: ../Doc/library/asyncio.rst:24
2016-10-30 09:46:26 +00:00
msgid ""
"concrete support for TCP, UDP, SSL, subprocess pipes, delayed calls, and "
"others (some may be system-dependent);"
msgstr ""
2017-04-02 20:14:06 +00:00
#: ../Doc/library/asyncio.rst:27
2016-10-30 09:46:26 +00:00
msgid ""
"a :class:`Future` class that mimics the one in the :mod:`concurrent.futures` "
"module, but adapted for use with the event loop;"
msgstr ""
2017-04-02 20:14:06 +00:00
#: ../Doc/library/asyncio.rst:30
2016-10-30 09:46:26 +00:00
msgid ""
"coroutines and tasks based on ``yield from`` (:PEP:`380`), to help write "
"concurrent code in a sequential fashion;"
msgstr ""
2017-04-02 20:14:06 +00:00
#: ../Doc/library/asyncio.rst:33
2016-10-30 09:46:26 +00:00
msgid "cancellation support for :class:`Future`\\s and coroutines;"
msgstr ""
2017-04-02 20:14:06 +00:00
#: ../Doc/library/asyncio.rst:35
2016-10-30 09:46:26 +00:00
msgid ""
":ref:`synchronization primitives <asyncio-sync>` for use between coroutines "
"in a single thread, mimicking those in the :mod:`threading` module;"
msgstr ""
2017-04-02 20:14:06 +00:00
#: ../Doc/library/asyncio.rst:38
2016-10-30 09:46:26 +00:00
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 ""
2017-04-02 20:14:06 +00:00
#: ../Doc/library/asyncio.rst:42
2016-10-30 09:46:26 +00:00
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 ""
2017-04-02 20:14:06 +00:00
#: ../Doc/library/asyncio.rst:47
2016-10-30 09:46:26 +00:00
msgid "Table of contents:"
msgstr "Table des matières :"
2017-04-02 20:14:06 +00:00
#: ../Doc/library/asyncio.rst:64
2016-10-30 09:46:26 +00:00
msgid ""
"The :mod:`asyncio` module was designed in :PEP:`3156`. For a motivational "
"primer on transports and protocols, see :PEP:`3153`."
msgstr ""