Skip to content

Commit f6094ef

Browse files
FusionNucleaireFusionNucleaire
authored andcommitted
Relecture library\operator.po
1 parent b8a0fd6 commit f6094ef

File tree

1 file changed

+12
-15
lines changed

1 file changed

+12
-15
lines changed

library/operator.po

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ msgstr ""
1616
"X-Generator: Poedit 2.0.6\n"
1717

1818
#: library/operator.rst:2
19-
#, fuzzy
2019
msgid ":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
2423
msgid "**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
9088
msgid ""
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.)"
9593
msgstr ""
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
102100
msgid ""
@@ -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``."
148146
msgstr ""
147+
"Le résultat a toujours le type :class:`int`. Précédemment, le résultat aurait"
148+
" pu être une instance de la sous-classe de ``int``."
149149

150150
#: library/operator.rst:125
151151
msgid ""
@@ -243,7 +243,6 @@ msgid "Set the value of *a* at index *b* to *c*."
243243
msgstr "Affecte *c* dans *a* à l'indice *b*."
244244

245245
#: library/operator.rst:247
246-
#, fuzzy
247246
msgid ""
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 "
@@ -255,7 +254,7 @@ msgstr ""
255254

256255
#: library/operator.rst:254
257256
msgid "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
261260
msgid "Return ``obj(*args, **kwargs)``."
@@ -329,15 +328,14 @@ msgid ""
329328
msgstr ""
330329

331330
#: library/operator.rst:308
332-
#, fuzzy
333331
msgid ""
334332
"Return a callable object that fetches *item* from its operand using the "
335333
"operand's :meth:`~object.__getitem__` method. If multiple items are "
336334
"specified, returns a tuple of lookup values. For example:"
337335
msgstr ""
338336
"Renvoie un objet appelable qui récupère *item* de l'opérande en utilisant la "
339-
"méthode :meth:`__getitem__`. Si plusieurs *item* sont passés en paramètre, "
340-
"renvoie un *n*-uplet des valeurs récupérées. Par exemple :"
337+
"méthode :meth:`~object.__getitem__`. Si plusieurs *item* sont passés en "
338+
"paramètre, renvoie un *n*-uplet des valeurs récupérées. Par exemple :"
341339

342340
#: library/operator.rst:312
343341
msgid "After ``f = itemgetter(2)``, the call ``f(r)`` returns ``r[2]``."
@@ -364,16 +362,15 @@ msgid ""
364362
msgstr ""
365363

366364
#: library/operator.rst:329
367-
#, fuzzy
368365
msgid ""
369366
"The items can be any type accepted by the operand's :meth:`~object."
370367
"__getitem__` method. Dictionaries accept any :term:`hashable` value. "
371368
"Lists, tuples, and strings accept an index or a slice:"
372369
msgstr ""
373370
"Les *items* en entrée peuvent être de n'importe quel type tant que celui-ci "
374-
"est géré par la méthode :meth:`__getitem__` de l'opérande. Les dictionnaires "
375-
"acceptent toute valeur hachable. Les listes, *n*-uplets et chaînes de "
376-
"caractères acceptent un index ou une tranche :"
371+
"est géré par la méthode :meth:`~object.__getitem__` de l'opérande. Les "
372+
"dictionnaires acceptent toute valeur hachable. Les listes, *n*-uplets et "
373+
"chaînes de caractères acceptent un index ou une tranche :"
377374

378375
#: library/operator.rst:343
379376
msgid ""

0 commit comments

Comments
 (0)