@@ -9,8 +9,8 @@ msgstr ""
9
9
"Project-Id-Version : Python 3.6\n "
10
10
"Report-Msgid-Bugs-To : \n "
11
11
"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-20 13:19+0100 \n "
13
+ "Last-Translator : Julien Palard <julien@palard.fr >\n "
14
14
"Language-Team : LANGUAGE <LL@li.org>\n "
15
15
"Language : fr\n "
16
16
"MIME-Version : 1.0\n "
@@ -19,15 +19,15 @@ msgstr ""
19
19
20
20
#: ../Doc/c-api/iter.rst:6
21
21
msgid "Iterator Protocol"
22
- msgstr ""
22
+ msgstr "Protocole d'Itération "
23
23
24
24
#: ../Doc/c-api/iter.rst:8
25
25
msgid "There are two functions specifically for working with iterators."
26
- msgstr ""
26
+ msgstr "Il existe deux fonctions dédiées à l'interaction avec les itérateurs. "
27
27
28
28
#: ../Doc/c-api/iter.rst:12
29
29
msgid "Return true if the object *o* supports the iterator protocol."
30
- msgstr ""
30
+ msgstr "Renvoie vrai si l'objet *o* supporte le protocole d'itération. "
31
31
32
32
#: ../Doc/c-api/iter.rst:17
33
33
msgid ""
@@ -36,9 +36,16 @@ msgid ""
36
36
"values, returns *NULL* with no exception set. If an error occurs while "
37
37
"retrieving the item, returns *NULL* and passes along the exception."
38
38
msgstr ""
39
+ "Renvoie la valeur suivante d'une itération de *o*. L'objet doit être un "
40
+ "itérateur (c'est à l'appelant de faire cette vérification). Renvoie *NULL* "
41
+ "s'il n'y a plus de valeurs, sans déclarer d'exception. Renvoie *NULL* en "
42
+ "déclarant une exception si une erreur survient lors de la récupération d'un "
43
+ "élément."
39
44
40
45
#: ../Doc/c-api/iter.rst:22
41
46
msgid ""
42
47
"To write a loop which iterates over an iterator, the C code should look "
43
48
"something like this::"
44
49
msgstr ""
50
+ "Pour écrire une boucle itérant un itérateur, le code C devrait ressembler "
51
+ "à : ::"
0 commit comments