Done: c-api/coro

This commit is contained in:
Julien Palard 2017-11-28 08:52:26 +01:00
parent 6a014cc6d8
commit 016458eb9a
1 changed files with 12 additions and 5 deletions

View File

@ -9,8 +9,8 @@ msgstr ""
"Project-Id-Version: Python 3.6\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"PO-Revision-Date: 2017-11-28 08:50+0100\n"
"Last-Translator: Julien Palard <julien@palard.fr>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
@ -19,25 +19,28 @@ msgstr ""
#: ../Doc/c-api/coro.rst:6
msgid "Coroutine Objects"
msgstr ""
msgstr "Objets Coroutines"
#: ../Doc/c-api/coro.rst:10
msgid ""
"Coroutine objects are what functions declared with an ``async`` keyword "
"return."
msgstr ""
"Les objets coroutines sont les objets renvoyés par les fonctions déclarées "
"avec le mot clef ``async``."
#: ../Doc/c-api/coro.rst:16
msgid "The C structure used for coroutine objects."
msgstr ""
msgstr "La structure C utilisée pour les objets coroutine."
#: ../Doc/c-api/coro.rst:21
msgid "The type object corresponding to coroutine objects."
msgstr ""
msgstr "L'objet type correpondant aux objets coroutines."
#: ../Doc/c-api/coro.rst:26
msgid "Return true if *ob*'s type is *PyCoro_Type*; *ob* must not be *NULL*."
msgstr ""
"Renvoie vrai si *ob* est de type *PyCoro_Type*. *ob* ne doit pas être *NULL*."
#: ../Doc/c-api/coro.rst:31
msgid ""
@ -46,3 +49,7 @@ msgid ""
"to *frame* is stolen by this function. The *frame* argument must not be "
"*NULL*."
msgstr ""
"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*."