@@ -5444,23 +5444,25 @@ msgstr ""
5444
5444
5445
5445
#: ../../library/stdtypes.rst:3997
5446
5446
msgid "Sets can be created by several means:"
5447
- msgstr ""
5447
+ msgstr "集合はいくつかの方法で生成できます: "
5448
5448
5449
5449
#: ../../library/stdtypes.rst:3999
5450
5450
msgid ""
5451
5451
"Use a comma-separated list of elements within braces: ``{'jack', 'sjoerd'}``"
5452
- msgstr ""
5452
+ msgstr "波括弧内にカンマ区切りで要素を列挙する: ``{'jack', 'sjoerd'}`` "
5453
5453
5454
5454
#: ../../library/stdtypes.rst:4000
5455
5455
msgid ""
5456
5456
"Use a set comprehension: ``{c for c in 'abracadabra' if c not in 'abc'}``"
5457
- msgstr ""
5457
+ msgstr "集合内包表記を使う: ``{c for c in 'abracadabra' if c not in 'abc'}`` "
5458
5458
5459
5459
#: ../../library/stdtypes.rst:4001
5460
5460
msgid ""
5461
5461
"Use the type constructor: ``set()``, ``set('foobar')``, ``set(['a', 'b', "
5462
5462
"'foo'])``"
5463
5463
msgstr ""
5464
+ "型コンストラクタを使う: ``set()``, ``set('foobar')``, ``set(['a', 'b', "
5465
+ "'foo'])``"
5464
5466
5465
5467
#: ../../library/stdtypes.rst:4003
5466
5468
msgid ""
@@ -5749,13 +5751,15 @@ msgstr ""
5749
5751
5750
5752
#: ../../library/stdtypes.rst:4195
5751
5753
msgid "Dictionaries can be created by several means:"
5752
- msgstr ""
5754
+ msgstr "辞書はいくつかの方法で生成できます: "
5753
5755
5754
5756
#: ../../library/stdtypes.rst:4197
5755
5757
msgid ""
5756
5758
"Use a comma-separated list of ``key: value`` pairs within braces: ``{'jack': "
5757
5759
"4098, 'sjoerd': 4127}`` or ``{4098: 'jack', 4127: 'sjoerd'}``"
5758
5760
msgstr ""
5761
+ "波括弧内にカンマ区切りで ``key: value`` 対を列挙する: ``{'jack': 4098, "
5762
+ "'sjoerd': 4127}`` あるいは ``{4098: 'jack', 4127: 'sjoerd'}``"
5759
5763
5760
5764
#: ../../library/stdtypes.rst:4199
5761
5765
msgid "Use a dict comprehension: ``{}``, ``{x: x ** 2 for x in range(10)}``"
@@ -5766,6 +5770,8 @@ msgid ""
5766
5770
"Use the type constructor: ``dict()``, ``dict([('foo', 100), ('bar', "
5767
5771
"200)])``, ``dict(foo=100, bar=200)``"
5768
5772
msgstr ""
5773
+ "型コンストラクタを使う: ``dict()``, ``dict([('foo', 100), ('bar', 200)])``, "
5774
+ "``dict(foo=100, bar=200)``"
5769
5775
5770
5776
#: ../../library/stdtypes.rst:4203
5771
5777
msgid ""
@@ -5987,6 +5993,8 @@ msgid ""
5987
5993
"Return a reverse iterator over the keys of the dictionary. This is a "
5988
5994
"shortcut for ``reversed(d.keys())``."
5989
5995
msgstr ""
5996
+ "辞書のキーに渡る逆イテレータを返します。これは ``reversed(d.keys())`` への"
5997
+ "ショートカットです。"
5990
5998
5991
5999
#: ../../library/stdtypes.rst:4357
5992
6000
msgid ""
@@ -6038,6 +6046,9 @@ msgid ""
6038
6046
"value)`` pairs (regardless of ordering). Order comparisons ('<', '<=', '>=', "
6039
6047
"'>') raise :exc:`TypeError`."
6040
6048
msgstr ""
6049
+ "複数の辞書は、(順序に関係なく) 同じ ``(key, value)`` の対を持つ場合に、そして"
6050
+ "その場合にのみ等しくなります。順序比較 ('<', '<=', '>=', '>') は :exc:"
6051
+ "`TypeError` を送出します。"
6041
6052
6042
6053
#: ../../library/stdtypes.rst:4388
6043
6054
msgid ""
@@ -6486,6 +6497,9 @@ msgid ""
6486
6497
"Accessing ``__code__`` raises an :ref:`auditing event <auditing>` ``object."
6487
6498
"__getattr__`` with arguments ``obj`` and ``\" __code__\" ``."
6488
6499
msgstr ""
6500
+ "``__code__`` へのアクセスは ``object.__getattr__`` に ``obj`` と "
6501
+ "``\" __code__\" `` を渡して行いますが、 :ref:`監査イベント <auditing>` を送出し"
6502
+ "ます。"
6489
6503
6490
6504
#: ../../library/stdtypes.rst:4718
6491
6505
msgid ""
0 commit comments