@@ -550,6 +550,11 @@ msgid ""
550
550
"entered, exited, and resumed at many different points. They can be "
551
551
"implemented with the :keyword:`async def` statement. See also :pep:`492`."
552
552
msgstr ""
553
+ "(コルーチン) コルーチンはサブルーチンのより一般的な形式です。\n"
554
+ "サブルーチンには決められた地点から入り、別の決められた地点から出ます。\n"
555
+ "コルーチンには多くの様々な地点から入る、出る、再開することができます。\n"
556
+ "コルーチンは :keyword:`async def` 文で実装できます。\n"
557
+ ":pep:`492` を参照してください。"
553
558
554
559
#: ../../glossary.rst:255
555
560
msgid "coroutine function"
@@ -1098,6 +1103,9 @@ msgid ""
1098
1103
" They all compare unequal (except with themselves), and their hash value is"
1099
1104
" derived from their :func:`id`."
1100
1105
msgstr ""
1106
+ "Python のイミュータブルな組み込みオブジェクトは、ほとんどがハッシュ可能です。(リストや辞書のような) ミュータブルなコンテナはハッシュ不可能です。(タプルや frozenset のような) イミュータブルなコンテナは、要素がハッシュ可能であるときのみハッシュ可能です。\n"
1107
+ "ユーザー定義のクラスのインスタンスであるようなオブジェクトはデフォルトでハッシュ可能です。\n"
1108
+ "それらは全て (自身を除いて) 比較結果は非等価であり、ハッシュ値は :func:`id` より得られます。"
1101
1109
1102
1110
#: ../../glossary.rst:522
1103
1111
msgid "IDLE"
@@ -1587,13 +1595,17 @@ msgid ""
1587
1595
"tuple and whose indexable elements are also accessible using named "
1588
1596
"attributes. The type or class may have other features as well."
1589
1597
msgstr ""
1598
+ "\" 名前付きタプル\" という用語は、タプルを継承していて、インデックスが付く要素に対し属性を使ってのアクセスもできる任意の型やクラスに応用されています。\n"
1599
+ "その型やクラスは他の機能も持っていることもあります。"
1590
1600
1591
1601
#: ../../glossary.rst:746
1592
1602
msgid ""
1593
1603
"Several built-in types are named tuples, including the values returned by "
1594
1604
":func:`time.localtime` and :func:`os.stat`. Another example is "
1595
1605
":data:`sys.float_info`::"
1596
1606
msgstr ""
1607
+ ":func:`time.localtime` や :func:`os.stat` の返り値を含むいくつかの組み込み型は名前付きタプルです。\n"
1608
+ "他の例は :data:`sys.float_info` です::"
1597
1609
1598
1610
#: ../../glossary.rst:757
1599
1611
msgid ""
0 commit comments