c-api/iter.po: Done.

This commit is contained in:
Julien Palard 2017-11-22 08:49:31 +01:00
parent ab620fbaf3
commit 4bc142a9d7
1 changed files with 12 additions and 5 deletions

View File

@ -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-20 13:19+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"
@ -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 "
"à : ::"