From 4bc142a9d76cf52aa664cab3740d2941738140a1 Mon Sep 17 00:00:00 2001 From: Julien Palard Date: Wed, 22 Nov 2017 08:49:31 +0100 Subject: [PATCH] c-api/iter.po: Done. --- c-api/iter.po | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/c-api/iter.po b/c-api/iter.po index b76b7665..2a8c4728 100644 --- a/c-api/iter.po +++ b/c-api/iter.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-20 13:19+0100\n" +"Last-Translator: Julien Palard \n" "Language-Team: LANGUAGE \n" "Language: fr\n" "MIME-Version: 1.0\n" @@ -19,15 +19,15 @@ msgstr "" #: ../Doc/c-api/iter.rst:6 msgid "Iterator Protocol" -msgstr "" +msgstr "Protocole d'Itération" #: ../Doc/c-api/iter.rst:8 msgid "There are two functions specifically for working with iterators." -msgstr "" +msgstr "Il existe deux fonctions dédiées à l'interaction avec les itérateurs." #: ../Doc/c-api/iter.rst:12 msgid "Return true if the object *o* supports the iterator protocol." -msgstr "" +msgstr "Renvoie vrai si l'objet *o* supporte le protocole d'itération." #: ../Doc/c-api/iter.rst:17 msgid "" @@ -36,9 +36,16 @@ msgid "" "values, returns *NULL* with no exception set. If an error occurs while " "retrieving the item, returns *NULL* and passes along the exception." msgstr "" +"Renvoie la valeur suivante d'une itération de *o*. L'objet doit être un " +"itérateur (c'est à l'appelant de faire cette vérification). Renvoie *NULL* " +"s'il n'y a plus de valeurs, sans déclarer d'exception. Renvoie *NULL* en " +"déclarant une exception si une erreur survient lors de la récupération d'un " +"élément." #: ../Doc/c-api/iter.rst:22 msgid "" "To write a loop which iterates over an iterator, the C code should look " "something like this::" msgstr "" +"Pour écrire une boucle itérant un itérateur, le code C devrait ressembler " +"à : ::"