Skip to content

Commit 016458e

Browse files
committed
Done: c-api/coro
1 parent 6a014cc commit 016458e

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

c-api/coro.po

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ msgstr ""
99
"Project-Id-Version: Python 3.6\n"
1010
"Report-Msgid-Bugs-To: \n"
1111
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
12-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12+
"PO-Revision-Date: 2017-11-28 08:50+0100\n"
13+
"Last-Translator: Julien Palard <julien@palard.fr>\n"
1414
"Language-Team: LANGUAGE <LL@li.org>\n"
1515
"Language: fr\n"
1616
"MIME-Version: 1.0\n"
@@ -19,25 +19,28 @@ msgstr ""
1919

2020
#: ../Doc/c-api/coro.rst:6
2121
msgid "Coroutine Objects"
22-
msgstr ""
22+
msgstr "Objets Coroutines"
2323

2424
#: ../Doc/c-api/coro.rst:10
2525
msgid ""
2626
"Coroutine objects are what functions declared with an ``async`` keyword "
2727
"return."
2828
msgstr ""
29+
"Les objets coroutines sont les objets renvoyés par les fonctions déclarées "
30+
"avec le mot clef ``async``."
2931

3032
#: ../Doc/c-api/coro.rst:16
3133
msgid "The C structure used for coroutine objects."
32-
msgstr ""
34+
msgstr "La structure C utilisée pour les objets coroutine."
3335

3436
#: ../Doc/c-api/coro.rst:21
3537
msgid "The type object corresponding to coroutine objects."
36-
msgstr ""
38+
msgstr "L'objet type correpondant aux objets coroutines."
3739

3840
#: ../Doc/c-api/coro.rst:26
3941
msgid "Return true if *ob*'s type is *PyCoro_Type*; *ob* must not be *NULL*."
4042
msgstr ""
43+
"Renvoie vrai si *ob* est de type *PyCoro_Type*. *ob* ne doit pas être *NULL*."
4144

4245
#: ../Doc/c-api/coro.rst:31
4346
msgid ""
@@ -46,3 +49,7 @@ msgid ""
4649
"to *frame* is stolen by this function. The *frame* argument must not be "
4750
"*NULL*."
4851
msgstr ""
52+
"Crée et renvoie un nouvel objet coroutine basé sur l'objet *frame*, avec "
53+
"``__name__`` et ``__qualname__`` respectivement assignés de *name* et "
54+
"*qualname*. Une référence à *frame* est empruntée par cette fonction. "
55+
"L'argument *frame* ne doit pas être *NULL*."

0 commit comments

Comments
 (0)