@@ -16,9 +16,8 @@ msgstr ""
1616"X-Generator :Poedit 2.0.6\n "
1717
1818#: library/operator.rst:2
19- #, fuzzy
2019msgid ":mod:`!operator` --- Standard operators as functions"
21- msgstr ":mod:`operator` — Opérateurs standards en tant que fonctions"
20+ msgstr ":mod:`! operator` — Opérateurs standards en tant que fonctions"
2221
2322#: library/operator.rst:9
2423msgid "**Source code:** :source:`Lib/operator.py`"
@@ -86,17 +85,16 @@ msgstr ""
8685"implémentent les tests de vérité, d'identité et les opérations booléennes :"
8786
8887#: library/operator.rst:61
89- #, fuzzy
9088msgid ""
9189"Return the outcome of :keyword:`not` *obj*. (Note that there is no :meth:`!"
9290"__not__` method for object instances; only the interpreter core defines this "
9391"operation. The result is affected by the :meth:`~object.__bool__` and :meth:"
9492"`~object.__len__` methods.)"
9593msgstr ""
9694"Renvoie le résultat de :keyword:`not` *obj*. (Notez qu'il n'existe pas de "
97- "méthode :meth:`__not__` pour les instances d'objet; seul le cœur de "
98- "l'interpréteur définit cette opération. Le résultat dépend des méthodes: "
99- "meth:`__bool__` et :meth:`__len__`.)"
95+ "méthode :meth:`! __not__` pour les instances d'objet; seul le cœur de "
96+ "l'interpréteur définit cette opération. Le résultat dépend des méthodes "
97+ ": meth:`~object. __bool__` et :meth:`~object. __len__` methods .)"
10098
10199#: library/operator.rst:69
102100msgid ""
@@ -146,6 +144,8 @@ msgid ""
146144"The result always has exact type :class:`int`. Previously, the result could "
147145"have been an instance of a subclass of ``int``."
148146msgstr ""
147+ "Le résultat a toujours le type :class:`int`. Précédemment, le résultat aurait"
148+ " pu être une instance d'une sous-classe de ``int``."
149149
150150#: library/operator.rst:125
151151msgid ""
@@ -243,19 +243,18 @@ msgid "Set the value of *a* at index *b* to *c*."
243243msgstr "Affecte *c* dans *a* à l'indice *b*."
244244
245245#: library/operator.rst:247
246- #, fuzzy
247246msgid ""
248247"Return an estimated length for the object *obj*. First try to return its "
249248"actual length, then an estimate using :meth:`object.__length_hint__`, and "
250249"finally return the default value."
251250msgstr ""
252- "Renvoie une estimation de la taille de l'objet *o *. Tente d'abord de "
251+ "Renvoie une estimation de la taille de l'objet *obj *. Tente d'abord de "
253252"renvoyer la taille réelle, puis une estimation en appelant :meth:`object."
254253"__length_hint__`, ou sinon la valeur par défaut."
255254
256255#: library/operator.rst:254
257256msgid "The following operation works with callables:"
258- msgstr ""
257+ msgstr "L'opération suivante marche avec les objets appelables : "
259258
260259#: library/operator.rst:259
261260msgid "Return ``obj(*args, **kwargs)``."
@@ -309,15 +308,14 @@ msgid "Equivalent to::"
309308msgstr "Équivalent à ::"
310309
311310#: library/operator.rst:308
312- #, fuzzy
313311msgid ""
314312"Return a callable object that fetches *item* from its operand using the "
315313"operand's :meth:`~object.__getitem__` method. If multiple items are "
316314"specified, returns a tuple of lookup values. For example:"
317315msgstr ""
318316"Renvoie un objet appelable qui récupère *item* de l'opérande en utilisant la "
319- "méthode :meth:`__getitem__`. Si plusieurs *item* sont passés en paramètre, "
320- "renvoie un *n*-uplet des valeurs récupérées. Par exemple :"
317+ "méthode :meth:`~object. __getitem__`. Si plusieurs *item* sont passés en "
318+ "paramètre, renvoie un *n*-uplet des valeurs récupérées. Par exemple :"
321319
322320#: library/operator.rst:312
323321msgid "After ``f = itemgetter(2)``, the call ``f(r)`` returns ``r[2]``."
@@ -331,16 +329,15 @@ msgstr ""
331329"Avec ``g = itemgetter(2, 5, 3)``, ``g(r)`` renvoie ``(r[2], r[5], r[3])``."
332330
333331#: library/operator.rst:329
334- #, fuzzy
335332msgid ""
336333"The items can be any type accepted by the operand's :meth:`~object."
337334"__getitem__` method. Dictionaries accept any :term:`hashable` value. "
338335"Lists, tuples, and strings accept an index or a slice:"
339336msgstr ""
340337"Les *items* en entrée peuvent être de n'importe quel type tant que celui-ci "
341- "est géré par la méthode :meth:`__getitem__` de l'opérande. Les dictionnaires "
342- "acceptent toute valeur hachable. Les listes, *n*-uplets et chaînes de "
343- "caractères acceptent un index ou une tranche :"
338+ "est géré par la méthode :meth:`~object. __getitem__` de l'opérande. Les "
339+ "dictionnaires acceptent toute valeur hachable. Les listes, *n*-uplets et "
340+ "chaînes de caractères acceptent un index ou une tranche :"
344341
345342#: library/operator.rst:343
346343msgid ""