# Copyright (C) 2001-2018, Python Software Foundation # For licence information, see README file. # msgid "" msgstr "" "Project-Id-Version: Python 3\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-08-24 09:01+0200\n" "PO-Revision-Date: 2018-10-04 12:24+0200\n" "Last-Translator: Julien Palard \n" "Language-Team: FRENCH \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: c-api/coro.rst:6 msgid "Coroutine Objects" msgstr "Objets coroutines" #: 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``." #: c-api/coro.rst:16 msgid "The C structure used for coroutine objects." msgstr "La structure C utilisée pour les objets coroutine." #: c-api/coro.rst:21 msgid "The type object corresponding to coroutine objects." msgstr "L'objet type correspondant aux objets coroutines." #: c-api/coro.rst:26 #, fuzzy msgid "" "Return true if *ob*'s type is :c:type:`PyCoro_Type`; *ob* must not be " "``NULL``." msgstr "" "Renvoie vrai si *ob* est de type *PyCoro_Type*. *ob* ne doit pas être *NULL*." #: c-api/coro.rst:31 #, fuzzy 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``." 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*."