Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8b45ccf

Browse files
committed
Work on stdtypes.
1 parent f8d2693 commit 8b45ccf

File tree

1 file changed

+32
-7
lines changed

1 file changed

+32
-7
lines changed

library/stdtypes.po

Lines changed: 32 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgstr ""
88
"Project-Id-Version: Python 3.6\n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2017-04-02 22:11+0200\n"
11-
"PO-Revision-Date: 2017-05-16 14:01+0200\n"
11+
"PO-Revision-Date: 2017-05-17 00:04+0200\n"
1212
"Language: fr\n"
1313
"MIME-Version: 1.0\n"
1414
"Content-Type: text/plain; charset=UTF-8\n"
@@ -5468,10 +5468,13 @@ msgid ""
54685468
"list of elements within braces, for example: ``{'jack', 'sjoerd'}``, in "
54695469
"addition to the :class:`set` constructor."
54705470
msgstr ""
5471+
"Des *sets* (mais pas des *frozensets*) peuvent être crées par une liste "
5472+
"d'éléments séparés par des virgules et entre accolades, par exemple : "
5473+
"``{'jack', 'sjoerd'}``, en plus du constructeur de la classe :class:`set`."
54715474

54725475
#: ../Doc/library/stdtypes.rst:3824
54735476
msgid "The constructors for both classes work the same:"
5474-
msgstr ""
5477+
msgstr "Les constructeurs des deux classes fonctionnent pareil :"
54755478

54765479
#: ../Doc/library/stdtypes.rst:3829
54775480
msgid ""
@@ -5480,71 +5483,93 @@ msgid ""
54805483
"sets of sets, the inner sets must be :class:`frozenset` objects. If "
54815484
"*iterable* is not specified, a new empty set is returned."
54825485
msgstr ""
5486+
"Renvoie un nouveau *set* ou *frozenset* dont les éléments viennent "
5487+
"d'*iterable*. Les éléments d'un *set* doivent être :term:`hashable`. Pour "
5488+
"représenter des *sets* de *sets* les *sets* intérieurs doivent être des :"
5489+
"class:`frozenset`. Si *iterable* n'est pas spécifié, un nouveau *set* vide "
5490+
"est renvoyé."
54835491

54845492
#: ../Doc/library/stdtypes.rst:3835
54855493
msgid ""
54865494
"Instances of :class:`set` and :class:`frozenset` provide the following "
54875495
"operations:"
54885496
msgstr ""
5497+
"Les instances de :class:`set` et :class:`frozenset` fournissent les "
5498+
"opérations suivantes :"
54895499

54905500
#: ../Doc/library/stdtypes.rst:3840
54915501
msgid "Return the number of elements in set *s* (cardinality of *s*)."
54925502
msgstr "Donne le nombre d'éléments dans le *set* *s* (cardinalité de *s*)."
54935503

54945504
#: ../Doc/library/stdtypes.rst:3844
54955505
msgid "Test *x* for membership in *s*."
5496-
msgstr ""
5506+
msgstr "Test d'appartenance de *x* dans *s*."
54975507

54985508
#: ../Doc/library/stdtypes.rst:3848
54995509
msgid "Test *x* for non-membership in *s*."
5500-
msgstr ""
5510+
msgstr "Test de non-appartenance de *x* dans *s*."
55015511

55025512
#: ../Doc/library/stdtypes.rst:3852
55035513
msgid ""
55045514
"Return ``True`` if the set has no elements in common with *other*. Sets are "
55055515
"disjoint if and only if their intersection is the empty set."
55065516
msgstr ""
5517+
"Renvoie ``True`` si l'ensemble n'a aucun élément en commun avec *other*. "
5518+
"Les ensembles sont disjoints si et seulement si leurs intersection est un "
5519+
"ensemble vide."
55075520

55085521
#: ../Doc/library/stdtypes.rst:3858
55095522
msgid "Test whether every element in the set is in *other*."
5510-
msgstr ""
5523+
msgstr "Teste si tous les éléments du set sont dans *other*."
55115524

55125525
#: ../Doc/library/stdtypes.rst:3862
55135526
msgid ""
55145527
"Test whether the set is a proper subset of *other*, that is, ``set <= other "
55155528
"and set != other``."
55165529
msgstr ""
5530+
"Teste si l'ensemble est un sous-ensemble de *other*, c'est-à-dire, ``set <= "
5531+
"other and set != other``."
55175532

55185533
#: ../Doc/library/stdtypes.rst:3868
55195534
msgid "Test whether every element in *other* is in the set."
5520-
msgstr ""
5535+
msgstr "Teste si tous les éléments de *other* sont dans l'ensemble."
55215536

55225537
#: ../Doc/library/stdtypes.rst:3872
55235538
msgid ""
55245539
"Test whether the set is a proper superset of *other*, that is, ``set >= "
55255540
"other and set != other``."
55265541
msgstr ""
5542+
"Teste si l'ensemble est un sur-ensemble de *other*, c'est-à-dire, ``set >= "
5543+
"other and set != other``."
55275544

55285545
#: ../Doc/library/stdtypes.rst:3878
55295546
msgid "Return a new set with elements from the set and all others."
55305547
msgstr ""
5548+
"Renvoie un nouvel ensemble dont les éléments viennent de l'ensemble et de "
5549+
"tous les autres."
55315550

55325551
#: ../Doc/library/stdtypes.rst:3883
55335552
msgid "Return a new set with elements common to the set and all others."
55345553
msgstr ""
5554+
"Renvoie un nouvel ensemble dont les éléments sont commun à l'ensemble et à "
5555+
"tous les autres."
55355556

55365557
#: ../Doc/library/stdtypes.rst:3888
55375558
msgid "Return a new set with elements in the set that are not in the others."
55385559
msgstr ""
5560+
"Renvoie un nouvel ensemble dont les éléments sont dans l'ensemble mais ne "
5561+
"sont dans aucun des autres."
55395562

55405563
#: ../Doc/library/stdtypes.rst:3893
55415564
msgid ""
55425565
"Return a new set with elements in either the set or *other* but not both."
55435566
msgstr ""
5567+
"Renvoie un nouvel ensemble dont les éléments sont soit dans l'ensemble, soit "
5568+
"dans les autres, mais pas dans les deux."
55445569

55455570
#: ../Doc/library/stdtypes.rst:3897
55465571
msgid "Return a new set with a shallow copy of *s*."
5547-
msgstr ""
5572+
msgstr "Renvoie un nouvel ensemble, copie de surface de *s*."
55485573

55495574
#: ../Doc/library/stdtypes.rst:3900
55505575
msgid ""

0 commit comments

Comments
 (0)