@@ -5444,23 +5444,25 @@ msgstr ""
54445444
54455445#: ../../library/stdtypes.rst:3997
54465446msgid "Sets can be created by several means:"
5447- msgstr ""
5447+ msgstr "集合はいくつかの方法で生成できます: "
54485448
54495449#: ../../library/stdtypes.rst:3999
54505450msgid ""
54515451"Use a comma-separated list of elements within braces: ``{'jack', 'sjoerd'}``"
5452- msgstr ""
5452+ msgstr "波括弧内にカンマ区切りで要素を列挙する: ``{'jack', 'sjoerd'}`` "
54535453
54545454#: ../../library/stdtypes.rst:4000
54555455msgid ""
54565456"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'}`` "
54585458
54595459#: ../../library/stdtypes.rst:4001
54605460msgid ""
54615461"Use the type constructor: ``set()``, ``set('foobar')``, ``set(['a', 'b', "
54625462"'foo'])``"
54635463msgstr ""
5464+ "型コンストラクタを使う: ``set()``, ``set('foobar')``, ``set(['a', 'b', "
5465+ "'foo'])``"
54645466
54655467#: ../../library/stdtypes.rst:4003
54665468msgid ""
@@ -5749,13 +5751,15 @@ msgstr ""
57495751
57505752#: ../../library/stdtypes.rst:4195
57515753msgid "Dictionaries can be created by several means:"
5752- msgstr ""
5754+ msgstr "辞書はいくつかの方法で生成できます: "
57535755
57545756#: ../../library/stdtypes.rst:4197
57555757msgid ""
57565758"Use a comma-separated list of ``key: value`` pairs within braces: ``{'jack': "
57575759"4098, 'sjoerd': 4127}`` or ``{4098: 'jack', 4127: 'sjoerd'}``"
57585760msgstr ""
5761+ "波括弧内にカンマ区切りで ``key: value`` 対を列挙する: ``{'jack': 4098, "
5762+ "'sjoerd': 4127}`` あるいは ``{4098: 'jack', 4127: 'sjoerd'}``"
57595763
57605764#: ../../library/stdtypes.rst:4199
57615765msgid "Use a dict comprehension: ``{}``, ``{x: x ** 2 for x in range(10)}``"
@@ -5766,6 +5770,8 @@ msgid ""
57665770"Use the type constructor: ``dict()``, ``dict([('foo', 100), ('bar', "
57675771"200)])``, ``dict(foo=100, bar=200)``"
57685772msgstr ""
5773+ "型コンストラクタを使う: ``dict()``, ``dict([('foo', 100), ('bar', 200)])``, "
5774+ "``dict(foo=100, bar=200)``"
57695775
57705776#: ../../library/stdtypes.rst:4203
57715777msgid ""
@@ -5987,6 +5993,8 @@ msgid ""
59875993"Return a reverse iterator over the keys of the dictionary. This is a "
59885994"shortcut for ``reversed(d.keys())``."
59895995msgstr ""
5996+ "辞書のキーに渡る逆イテレータを返します。これは ``reversed(d.keys())`` への"
5997+ "ショートカットです。"
59905998
59915999#: ../../library/stdtypes.rst:4357
59926000msgid ""
@@ -6038,6 +6046,9 @@ msgid ""
60386046"value)`` pairs (regardless of ordering). Order comparisons ('<', '<=', '>=', "
60396047"'>') raise :exc:`TypeError`."
60406048msgstr ""
6049+ "複数の辞書は、(順序に関係なく) 同じ ``(key, value)`` の対を持つ場合に、そして"
6050+ "その場合にのみ等しくなります。順序比較 ('<', '<=', '>=', '>') は :exc:"
6051+ "`TypeError` を送出します。"
60416052
60426053#: ../../library/stdtypes.rst:4388
60436054msgid ""
@@ -6486,6 +6497,9 @@ msgid ""
64866497"Accessing ``__code__`` raises an :ref:`auditing event <auditing>` ``object."
64876498"__getattr__`` with arguments ``obj`` and ``\" __code__\" ``."
64886499msgstr ""
6500+ "``__code__`` へのアクセスは ``object.__getattr__`` に ``obj`` と "
6501+ "``\" __code__\" `` を渡して行いますが、 :ref:`監査イベント <auditing>` を送出し"
6502+ "ます。"
64896503
64906504#: ../../library/stdtypes.rst:4718
64916505msgid ""
0 commit comments