@@ -534,6 +534,11 @@ msgid ""
534
534
"entered, exited, and resumed at many different points. They can be "
535
535
"implemented with the :keyword:`async def` statement. See also :pep:`492`."
536
536
msgstr ""
537
+ "(コルーチン) コルーチンはサブルーチンのより一般的な形式です。\n"
538
+ "サブルーチンには決められた地点から入り、別の決められた地点から出ます。\n"
539
+ "コルーチンには多くの様々な地点から入る、出る、再開することができます。\n"
540
+ "コルーチンは :keyword:`async def` 文で実装できます。\n"
541
+ ":pep:`492` を参照してください。"
537
542
538
543
#: ../../glossary.rst:251
539
544
msgid "coroutine function"
@@ -1082,6 +1087,9 @@ msgid ""
1082
1087
" They all compare unequal (except with themselves), and their hash value is"
1083
1088
" derived from their :func:`id`."
1084
1089
msgstr ""
1090
+ "Python のイミュータブルな組み込みオブジェクトは、ほとんどがハッシュ可能です。(リストや辞書のような) ミュータブルなコンテナはハッシュ不可能です。(タプルや frozenset のような) イミュータブルなコンテナは、要素がハッシュ可能であるときのみハッシュ可能です。\n"
1091
+ "ユーザー定義のクラスのインスタンスであるようなオブジェクトはデフォルトでハッシュ可能です。\n"
1092
+ "それらは全て (自身を除いて) 比較結果は非等価であり、ハッシュ値は :func:`id` より得られます。"
1085
1093
1086
1094
#: ../../glossary.rst:518
1087
1095
msgid "IDLE"
@@ -1571,13 +1579,17 @@ msgid ""
1571
1579
"tuple and whose indexable elements are also accessible using named "
1572
1580
"attributes. The type or class may have other features as well."
1573
1581
msgstr ""
1582
+ "\" 名前付きタプル\" という用語は、タプルを継承していて、インデックスが付く要素に対し属性を使ってのアクセスもできる任意の型やクラスに適用されています。\n"
1583
+ "その型やクラスは他の機能も持っていることもあります。"
1574
1584
1575
1585
#: ../../glossary.rst:742
1576
1586
msgid ""
1577
1587
"Several built-in types are named tuples, including the values returned by "
1578
1588
":func:`time.localtime` and :func:`os.stat`. Another example is "
1579
1589
":data:`sys.float_info`::"
1580
1590
msgstr ""
1591
+ ":func:`time.localtime` や :func:`os.stat` の返り値を含むいくつかの組み込み型は名前付きタプルです。\n"
1592
+ "他の例は :data:`sys.float_info` です::"
1581
1593
1582
1594
#: ../../glossary.rst:753
1583
1595
msgid ""
0 commit comments