Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions c-api/coro.po
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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 ""
Expand All @@ -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*."