python-docs-fr/c-api/coro.po

57 lines
1.8 KiB
Plaintext
Raw Normal View History

2018-07-04 09:06:45 +00:00
# Copyright (C) 2001-2018, Python Software Foundation
2018-07-04 09:08:42 +00:00
# For licence information, see README file.
2016-10-30 09:46:26 +00:00
#
msgid ""
msgstr ""
2019-12-05 22:15:54 +00:00
"Project-Id-Version: Python 3\n"
2016-10-30 09:46:26 +00:00
"Report-Msgid-Bugs-To: \n"
2020-09-11 07:11:46 +00:00
"POT-Creation-Date: 2020-08-24 09:01+0200\n"
2018-10-04 10:28:41 +00:00
"PO-Revision-Date: 2018-10-04 12:24+0200\n"
2017-11-28 07:52:26 +00:00
"Last-Translator: Julien Palard <julien@palard.fr>\n"
2018-07-04 09:14:25 +00:00
"Language-Team: FRENCH <traductions@lists.afpy.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"
#: c-api/coro.rst:6
2016-10-30 09:46:26 +00:00
msgid "Coroutine Objects"
msgstr "Objets coroutines"
2016-10-30 09:46:26 +00:00
#: c-api/coro.rst:10
2016-10-30 09:46:26 +00:00
msgid ""
"Coroutine objects are what functions declared with an ``async`` keyword "
"return."
msgstr ""
2017-11-28 07:52:26 +00:00
"Les objets coroutines sont les objets renvoyés par les fonctions déclarées "
"avec le mot clef ``async``."
2016-10-30 09:46:26 +00:00
#: c-api/coro.rst:16
2016-10-30 09:46:26 +00:00
msgid "The C structure used for coroutine objects."
2017-11-28 07:52:26 +00:00
msgstr "La structure C utilisée pour les objets coroutine."
2016-10-30 09:46:26 +00:00
#: c-api/coro.rst:21
2016-10-30 09:46:26 +00:00
msgid "The type object corresponding to coroutine objects."
2018-10-04 10:28:41 +00:00
msgstr "L'objet type correspondant aux objets coroutines."
2016-10-30 09:46:26 +00:00
#: c-api/coro.rst:26
#, fuzzy
msgid ""
"Return true if *ob*'s type is :c:type:`PyCoro_Type`; *ob* must not be "
"``NULL``."
2016-10-30 09:46:26 +00:00
msgstr ""
2017-11-28 07:52:26 +00:00
"Renvoie vrai si *ob* est de type *PyCoro_Type*. *ob* ne doit pas être *NULL*."
2016-10-30 09:46:26 +00:00
#: c-api/coro.rst:31
#, fuzzy
2016-10-30 09:46:26 +00:00
msgid ""
"Create and return a new coroutine object based on the *frame* object, with "
"``__name__`` and ``__qualname__`` set to *name* and *qualname*. A reference "
"to *frame* is stolen by this function. The *frame* argument must not be "
"``NULL``."
2016-10-30 09:46:26 +00:00
msgstr ""
2017-11-28 07:52:26 +00:00
"Crée et renvoie un nouvel objet coroutine basé sur l'objet *frame*, avec "
"``__name__`` et ``__qualname__`` respectivement assignés de *name* et "
"*qualname*. Une référence à *frame* est empruntée par cette fonction. "
"L'argument *frame* ne doit pas être *NULL*."