@@ -8,7 +8,7 @@ msgstr ""
8
8
"Project-Id-Version : Python 3.6\n "
9
9
"Report-Msgid-Bugs-To : \n "
10
10
"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 "
12
12
"Language : fr\n "
13
13
"MIME-Version : 1.0\n "
14
14
"Content-Type : text/plain; charset=UTF-8\n "
@@ -5468,10 +5468,13 @@ msgid ""
5468
5468
"list of elements within braces, for example: ``{'jack', 'sjoerd'}``, in "
5469
5469
"addition to the :class:`set` constructor."
5470
5470
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`."
5471
5474
5472
5475
#: ../Doc/library/stdtypes.rst:3824
5473
5476
msgid "The constructors for both classes work the same:"
5474
- msgstr ""
5477
+ msgstr "Les constructeurs des deux classes fonctionnent pareil : "
5475
5478
5476
5479
#: ../Doc/library/stdtypes.rst:3829
5477
5480
msgid ""
@@ -5480,71 +5483,93 @@ msgid ""
5480
5483
"sets of sets, the inner sets must be :class:`frozenset` objects. If "
5481
5484
"*iterable* is not specified, a new empty set is returned."
5482
5485
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é."
5483
5491
5484
5492
#: ../Doc/library/stdtypes.rst:3835
5485
5493
msgid ""
5486
5494
"Instances of :class:`set` and :class:`frozenset` provide the following "
5487
5495
"operations:"
5488
5496
msgstr ""
5497
+ "Les instances de :class:`set` et :class:`frozenset` fournissent les "
5498
+ "opérations suivantes :"
5489
5499
5490
5500
#: ../Doc/library/stdtypes.rst:3840
5491
5501
msgid "Return the number of elements in set *s* (cardinality of *s*)."
5492
5502
msgstr "Donne le nombre d'éléments dans le *set* *s* (cardinalité de *s*)."
5493
5503
5494
5504
#: ../Doc/library/stdtypes.rst:3844
5495
5505
msgid "Test *x* for membership in *s*."
5496
- msgstr ""
5506
+ msgstr "Test d'appartenance de *x* dans *s*. "
5497
5507
5498
5508
#: ../Doc/library/stdtypes.rst:3848
5499
5509
msgid "Test *x* for non-membership in *s*."
5500
- msgstr ""
5510
+ msgstr "Test de non-appartenance de *x* dans *s*. "
5501
5511
5502
5512
#: ../Doc/library/stdtypes.rst:3852
5503
5513
msgid ""
5504
5514
"Return ``True`` if the set has no elements in common with *other*. Sets are "
5505
5515
"disjoint if and only if their intersection is the empty set."
5506
5516
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."
5507
5520
5508
5521
#: ../Doc/library/stdtypes.rst:3858
5509
5522
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*. "
5511
5524
5512
5525
#: ../Doc/library/stdtypes.rst:3862
5513
5526
msgid ""
5514
5527
"Test whether the set is a proper subset of *other*, that is, ``set <= other "
5515
5528
"and set != other``."
5516
5529
msgstr ""
5530
+ "Teste si l'ensemble est un sous-ensemble de *other*, c'est-à-dire, ``set <= "
5531
+ "other and set != other``."
5517
5532
5518
5533
#: ../Doc/library/stdtypes.rst:3868
5519
5534
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. "
5521
5536
5522
5537
#: ../Doc/library/stdtypes.rst:3872
5523
5538
msgid ""
5524
5539
"Test whether the set is a proper superset of *other*, that is, ``set >= "
5525
5540
"other and set != other``."
5526
5541
msgstr ""
5542
+ "Teste si l'ensemble est un sur-ensemble de *other*, c'est-à-dire, ``set >= "
5543
+ "other and set != other``."
5527
5544
5528
5545
#: ../Doc/library/stdtypes.rst:3878
5529
5546
msgid "Return a new set with elements from the set and all others."
5530
5547
msgstr ""
5548
+ "Renvoie un nouvel ensemble dont les éléments viennent de l'ensemble et de "
5549
+ "tous les autres."
5531
5550
5532
5551
#: ../Doc/library/stdtypes.rst:3883
5533
5552
msgid "Return a new set with elements common to the set and all others."
5534
5553
msgstr ""
5554
+ "Renvoie un nouvel ensemble dont les éléments sont commun à l'ensemble et à "
5555
+ "tous les autres."
5535
5556
5536
5557
#: ../Doc/library/stdtypes.rst:3888
5537
5558
msgid "Return a new set with elements in the set that are not in the others."
5538
5559
msgstr ""
5560
+ "Renvoie un nouvel ensemble dont les éléments sont dans l'ensemble mais ne "
5561
+ "sont dans aucun des autres."
5539
5562
5540
5563
#: ../Doc/library/stdtypes.rst:3893
5541
5564
msgid ""
5542
5565
"Return a new set with elements in either the set or *other* but not both."
5543
5566
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."
5544
5569
5545
5570
#: ../Doc/library/stdtypes.rst:3897
5546
5571
msgid "Return a new set with a shallow copy of *s*."
5547
- msgstr ""
5572
+ msgstr "Renvoie un nouvel ensemble, copie de surface de *s*. "
5548
5573
5549
5574
#: ../Doc/library/stdtypes.rst:3900
5550
5575
msgid ""
0 commit comments