@@ -20,7 +20,7 @@ msgid ""
2020msgstr ""
2121"Project-Id-Version : Python 3.9\n "
2222"Report-Msgid-Bugs-To : \n "
23- "POT-Creation-Date : 2021-07-23 06:59 +0000\n "
23+ "POT-Creation-Date : 2021-08-03 07:07 +0000\n "
2424"PO-Revision-Date : 2017-02-16 23:03+0000\n "
2525"Last-Translator : Takanori Suzuki <takanori@takanory.net>, 2021\n "
2626"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -1347,15 +1347,14 @@ msgstr ""
13471347#: ../../library/collections.rst:1151
13481348msgid ""
13491349"An :class:`OrderedDict` would also be useful for implementing variants of "
1350- ":func:`functools.lru_cache`:: "
1350+ ":func:`functools.lru_cache`:"
13511351msgstr ""
1352- ":class:`OrderedDict` は :func:`functools.lru_cache` の変種を実装するのにも役に立ちます::"
13531352
1354- #: ../../library/collections.rst:1176
1353+ #: ../../library/collections.rst:1192
13551354msgid ":class:`UserDict` objects"
13561355msgstr ":class:`UserDict` オブジェクト"
13571356
1358- #: ../../library/collections.rst:1178
1357+ #: ../../library/collections.rst:1194
13591358msgid ""
13601359"The class, :class:`UserDict` acts as a wrapper around dictionary objects. "
13611360"The need for this class has been partially supplanted by the ability to "
@@ -1366,7 +1365,7 @@ msgstr ""
13661365"から直接的にサブクラス化できる能力に部分的に取って代わられました; "
13671366"しかし、根底の辞書に属性としてアクセスできるので、このクラスを使った方が簡単になることもあります。"
13681367
1369- #: ../../library/collections.rst:1186
1368+ #: ../../library/collections.rst:1202
13701369msgid ""
13711370"Class that simulates a dictionary. The instance's contents are kept in a "
13721371"regular dictionary, which is accessible via the :attr:`data` attribute of "
@@ -1375,22 +1374,22 @@ msgid ""
13751374"not be kept, allowing it to be used for other purposes."
13761375msgstr ""
13771376
1378- #: ../../library/collections.rst:1192
1377+ #: ../../library/collections.rst:1208
13791378msgid ""
13801379"In addition to supporting the methods and operations of mappings, "
13811380":class:`UserDict` instances provide the following attribute:"
13821381msgstr "マッピングのメソッドと演算をサポートするのに加え、 :class:`UserDict` インスタンスは以下の属性を提供します:"
13831382
1384- #: ../../library/collections.rst:1197
1383+ #: ../../library/collections.rst:1213
13851384msgid ""
13861385"A real dictionary used to store the contents of the :class:`UserDict` class."
13871386msgstr ":class:`UserDict` クラスの内容を保存するために使われる実際の辞書です。"
13881387
1389- #: ../../library/collections.rst:1203
1388+ #: ../../library/collections.rst:1219
13901389msgid ":class:`UserList` objects"
13911390msgstr ":class:`UserList` オブジェクト"
13921391
1393- #: ../../library/collections.rst:1205
1392+ #: ../../library/collections.rst:1221
13941393msgid ""
13951394"This class acts as a wrapper around list objects. It is a useful base class"
13961395" for your own list-like classes which can inherit from them and override "
@@ -1399,7 +1398,7 @@ msgid ""
13991398msgstr ""
14001399"このクラスはリストオブジェクトのラッパとしてはたらきます。これは独自のリスト風クラスの基底クラスとして便利で、既存のメソッドをオーバーライドしたり新しいメソッドを加えたりできます。こうして、リストに新しい振る舞いを加えられます。"
14011400
1402- #: ../../library/collections.rst:1210
1401+ #: ../../library/collections.rst:1226
14031402msgid ""
14041403"The need for this class has been partially supplanted by the ability to "
14051404"subclass directly from :class:`list`; however, this class can be easier to "
@@ -1408,7 +1407,7 @@ msgstr ""
14081407"このクラスの必要性は、 :class:`list` から直接的にサブクラス化できる能力に部分的に取って代わられました; "
14091408"しかし、根底のリストに属性としてアクセスできるので、このクラスを使った方が簡単になることもあります。"
14101409
1411- #: ../../library/collections.rst:1216
1410+ #: ../../library/collections.rst:1232
14121411msgid ""
14131412"Class that simulates a list. The instance's contents are kept in a regular "
14141413"list, which is accessible via the :attr:`data` attribute of "
@@ -1420,19 +1419,19 @@ msgstr ""
14201419":attr:`data` 属性を通してアクセスできます。インスタンスの内容は最初に *list* のコピーに設定されますが、デフォルトでは空リスト "
14211420"``[]`` です。 *list* は何らかのイテラブル、例えば通常の Python リストや :class:`UserList` オブジェクト、です。"
14221421
1423- #: ../../library/collections.rst:1222
1422+ #: ../../library/collections.rst:1238
14241423msgid ""
14251424"In addition to supporting the methods and operations of mutable sequences, "
14261425":class:`UserList` instances provide the following attribute:"
14271426msgstr "ミュータブルシーケンスのメソッドと演算をサポートするのに加え、 :class:`UserList` インスタンスは以下の属性を提供します:"
14281427
1429- #: ../../library/collections.rst:1227
1428+ #: ../../library/collections.rst:1243
14301429msgid ""
14311430"A real :class:`list` object used to store the contents of the "
14321431":class:`UserList` class."
14331432msgstr ":class:`UserList` クラスの内容を保存するために使われる実際の :class:`list` オブジェクトです。"
14341433
1435- #: ../../library/collections.rst:1230
1434+ #: ../../library/collections.rst:1246
14361435msgid ""
14371436"**Subclassing requirements:** Subclasses of :class:`UserList` are expected "
14381437"to offer a constructor which can be called with either no arguments or one "
@@ -1444,7 +1443,7 @@ msgstr ""
14441443"**サブクラス化の要件:** :class:`UserList` "
14451444"のサブクラスは引数なしか、あるいは一つの引数のどちらかとともに呼び出せるコンストラクタを提供することが期待されています。新しいシーケンスを返すリスト演算は現在の実装クラスのインスタンスを作成しようとします。そのために、データ元として使われるシーケンスオブジェクトである一つのパラメータとともにコンストラクタを呼び出せると想定しています。"
14461445
1447- #: ../../library/collections.rst:1237
1446+ #: ../../library/collections.rst:1253
14481447msgid ""
14491448"If a derived class does not wish to comply with this requirement, all of the"
14501449" special methods supported by this class will need to be overridden; please "
@@ -1453,11 +1452,11 @@ msgid ""
14531452msgstr ""
14541453"派生クラスがこの要求に従いたくないならば、このクラスがサポートしているすべての特殊メソッドはオーバーライドされる必要があります。その場合に提供される必要のあるメソッドについての情報は、ソースを参考にしてください。"
14551454
1456- #: ../../library/collections.rst:1243
1455+ #: ../../library/collections.rst:1259
14571456msgid ":class:`UserString` objects"
14581457msgstr ":class:`UserString` オブジェクト"
14591458
1460- #: ../../library/collections.rst:1245
1459+ #: ../../library/collections.rst:1261
14611460msgid ""
14621461"The class, :class:`UserString` acts as a wrapper around string objects. The "
14631462"need for this class has been partially supplanted by the ability to subclass"
@@ -1468,7 +1467,7 @@ msgstr ""
14681467"から直接的にサブクラス化できる能力に部分的に取って代わられました; "
14691468"しかし、根底の文字列に属性としてアクセスできるので、このクラスを使った方が簡単になることもあります。"
14701469
1471- #: ../../library/collections.rst:1253
1470+ #: ../../library/collections.rst:1269
14721471msgid ""
14731472"Class that simulates a string object. The instance's content is kept in a "
14741473"regular string object, which is accessible via the :attr:`data` attribute of"
@@ -1481,19 +1480,19 @@ msgstr ""
14811480"インスタンスの内容には最初に *seq* のコピーが設定されます。\n"
14821481"*seq* 引数は、組み込みの :func:`str` 関数で文字列に変換できる任意のオブジェクトです。"
14831482
1484- #: ../../library/collections.rst:1260
1483+ #: ../../library/collections.rst:1276
14851484msgid ""
14861485"In addition to supporting the methods and operations of strings, "
14871486":class:`UserString` instances provide the following attribute:"
14881487msgstr "文字列のメソッドと演算をサポートするのに加え、 :class:`UserString` インスタンスは次の属性を提供します:"
14891488
1490- #: ../../library/collections.rst:1265
1489+ #: ../../library/collections.rst:1281
14911490msgid ""
14921491"A real :class:`str` object used to store the contents of the "
14931492":class:`UserString` class."
14941493msgstr ":class:`UserString` クラスの内容を保存するために使われる実際の :class:`str` オブジェクトです。"
14951494
1496- #: ../../library/collections.rst:1268
1495+ #: ../../library/collections.rst:1284
14971496msgid ""
14981497"New methods ``__getnewargs__``, ``__rmod__``, ``casefold``, ``format_map``, "
14991498"``isprintable``, and ``maketrans``."
0 commit comments