From 016458eb9a605d5747ec24e71b812fc2764b653a Mon Sep 17 00:00:00 2001 From: Julien Palard Date: Tue, 28 Nov 2017 08:52:26 +0100 Subject: [PATCH] Done: c-api/coro --- c-api/coro.po | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/c-api/coro.po b/c-api/coro.po index af194ab6..2aa7f992 100644 --- a/c-api/coro.po +++ b/c-api/coro.po @@ -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 \n" +"PO-Revision-Date: 2017-11-28 08:50+0100\n" +"Last-Translator: Julien Palard \n" "Language-Team: LANGUAGE \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*."