@@ -18,7 +18,7 @@ msgid ""
18
18
msgstr ""
19
19
"Project-Id-Version :Python 3.8\n "
20
20
"Report-Msgid-Bugs-To :\n "
21
- "POT-Creation-Date :2020-03-04 12:51 +0000\n "
21
+ "POT-Creation-Date :2020-05-21 14:01 +0000\n "
22
22
"PO-Revision-Date :2017-02-16 23:03+0000\n "
23
23
"Last-Translator :tomo, 2019\n "
24
24
"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -1327,11 +1327,11 @@ msgid ""
1327
1327
msgstr ""
1328
1328
":class:`OrderedDict` は :func:`functools.lru_cache` の変種を実装するのにも役に立ちます::"
1329
1329
1330
- #: ../../library/collections.rst:1160
1330
+ #: ../../library/collections.rst:1162
1331
1331
msgid ":class:`UserDict` objects"
1332
1332
msgstr ":class:`UserDict` オブジェクト"
1333
1333
1334
- #: ../../library/collections.rst:1162
1334
+ #: ../../library/collections.rst:1164
1335
1335
msgid ""
1336
1336
"The class, :class:`UserDict` acts as a wrapper around dictionary objects. "
1337
1337
"The need for this class has been partially supplanted by the ability to "
@@ -1342,7 +1342,7 @@ msgstr ""
1342
1342
"から直接的にサブクラス化できる能力に部分的に取って代わられました; "
1343
1343
"しかし、根底の辞書に属性としてアクセスできるので、このクラスを使った方が簡単になることもあります。"
1344
1344
1345
- #: ../../library/collections.rst:1170
1345
+ #: ../../library/collections.rst:1172
1346
1346
msgid ""
1347
1347
"Class that simulates a dictionary. The instance's contents are kept in a "
1348
1348
"regular dictionary, which is accessible via the :attr:`data` attribute of "
@@ -1354,22 +1354,22 @@ msgstr ""
1354
1354
":attr:`data` 属性を通してアクセスできます。 *initialdata* が与えられれば、 :attr:`data` "
1355
1355
"はその内容で初期化されます。他の目的のために使えるように、 *initialdata* への参照が保存されないことがあるということに注意してください。"
1356
1356
1357
- #: ../../library/collections.rst:1176
1357
+ #: ../../library/collections.rst:1178
1358
1358
msgid ""
1359
1359
"In addition to supporting the methods and operations of mappings, "
1360
1360
":class:`UserDict` instances provide the following attribute:"
1361
1361
msgstr "マッピングのメソッドと演算をサポートするのに加え、 :class:`UserDict` インスタンスは以下の属性を提供します:"
1362
1362
1363
- #: ../../library/collections.rst:1181
1363
+ #: ../../library/collections.rst:1183
1364
1364
msgid ""
1365
1365
"A real dictionary used to store the contents of the :class:`UserDict` class."
1366
1366
msgstr ":class:`UserDict` クラスの内容を保存するために使われる実際の辞書です。"
1367
1367
1368
- #: ../../library/collections.rst:1187
1368
+ #: ../../library/collections.rst:1189
1369
1369
msgid ":class:`UserList` objects"
1370
1370
msgstr ":class:`UserList` オブジェクト"
1371
1371
1372
- #: ../../library/collections.rst:1189
1372
+ #: ../../library/collections.rst:1191
1373
1373
msgid ""
1374
1374
"This class acts as a wrapper around list objects. It is a useful base class"
1375
1375
" for your own list-like classes which can inherit from them and override "
@@ -1378,7 +1378,7 @@ msgid ""
1378
1378
msgstr ""
1379
1379
"このクラスはリストオブジェクトのラッパとしてはたらきます。これは独自のリスト風クラスの基底クラスとして便利で、既存のメソッドをオーバーライドしたり新しいメソッドを加えたりできます。こうして、リストに新しい振る舞いを加えられます。"
1380
1380
1381
- #: ../../library/collections.rst:1194
1381
+ #: ../../library/collections.rst:1196
1382
1382
msgid ""
1383
1383
"The need for this class has been partially supplanted by the ability to "
1384
1384
"subclass directly from :class:`list`; however, this class can be easier to "
@@ -1387,7 +1387,7 @@ msgstr ""
1387
1387
"このクラスの必要性は、 :class:`list` から直接的にサブクラス化できる能力に部分的に取って代わられました; "
1388
1388
"しかし、根底のリストに属性としてアクセスできるので、このクラスを使った方が簡単になることもあります。"
1389
1389
1390
- #: ../../library/collections.rst:1200
1390
+ #: ../../library/collections.rst:1202
1391
1391
msgid ""
1392
1392
"Class that simulates a list. The instance's contents are kept in a regular "
1393
1393
"list, which is accessible via the :attr:`data` attribute of "
@@ -1399,19 +1399,19 @@ msgstr ""
1399
1399
":attr:`data` 属性を通してアクセスできます。インスタンスの内容は最初に *list* のコピーに設定されますが、デフォルトでは空リスト "
1400
1400
"``[]`` です。 *list* は何らかのイテラブル、例えば通常の Python リストや :class:`UserList` オブジェクト、です。"
1401
1401
1402
- #: ../../library/collections.rst:1206
1402
+ #: ../../library/collections.rst:1208
1403
1403
msgid ""
1404
1404
"In addition to supporting the methods and operations of mutable sequences, "
1405
1405
":class:`UserList` instances provide the following attribute:"
1406
1406
msgstr "ミュータブルシーケンスのメソッドと演算をサポートするのに加え、 :class:`UserList` インスタンスは以下の属性を提供します:"
1407
1407
1408
- #: ../../library/collections.rst:1211
1408
+ #: ../../library/collections.rst:1213
1409
1409
msgid ""
1410
1410
"A real :class:`list` object used to store the contents of the "
1411
1411
":class:`UserList` class."
1412
1412
msgstr ":class:`UserList` クラスの内容を保存するために使われる実際の :class:`list` オブジェクトです。"
1413
1413
1414
- #: ../../library/collections.rst:1214
1414
+ #: ../../library/collections.rst:1216
1415
1415
msgid ""
1416
1416
"**Subclassing requirements:** Subclasses of :class:`UserList` are expected "
1417
1417
"to offer a constructor which can be called with either no arguments or one "
@@ -1423,7 +1423,7 @@ msgstr ""
1423
1423
"**サブクラス化の要件:** :class:`UserList` "
1424
1424
"のサブクラスは引数なしか、あるいは一つの引数のどちらかとともに呼び出せるコンストラクタを提供することが期待されています。新しいシーケンスを返すリスト演算は現在の実装クラスのインスタンスを作成しようとします。そのために、データ元として使われるシーケンスオブジェクトである一つのパラメータとともにコンストラクタを呼び出せると想定しています。"
1425
1425
1426
- #: ../../library/collections.rst:1221
1426
+ #: ../../library/collections.rst:1223
1427
1427
msgid ""
1428
1428
"If a derived class does not wish to comply with this requirement, all of the"
1429
1429
" special methods supported by this class will need to be overridden; please "
@@ -1432,11 +1432,11 @@ msgid ""
1432
1432
msgstr ""
1433
1433
"派生クラスがこの要求に従いたくないならば、このクラスがサポートしているすべての特殊メソッドはオーバーライドされる必要があります。その場合に提供される必要のあるメソッドについての情報は、ソースを参考にしてください。"
1434
1434
1435
- #: ../../library/collections.rst:1227
1435
+ #: ../../library/collections.rst:1229
1436
1436
msgid ":class:`UserString` objects"
1437
1437
msgstr ":class:`UserString` オブジェクト"
1438
1438
1439
- #: ../../library/collections.rst:1229
1439
+ #: ../../library/collections.rst:1231
1440
1440
msgid ""
1441
1441
"The class, :class:`UserString` acts as a wrapper around string objects. The "
1442
1442
"need for this class has been partially supplanted by the ability to subclass"
@@ -1447,7 +1447,7 @@ msgstr ""
1447
1447
"から直接的にサブクラス化できる能力に部分的に取って代わられました; "
1448
1448
"しかし、根底の文字列に属性としてアクセスできるので、このクラスを使った方が簡単になることもあります。"
1449
1449
1450
- #: ../../library/collections.rst:1237
1450
+ #: ../../library/collections.rst:1239
1451
1451
msgid ""
1452
1452
"Class that simulates a string object. The instance's content is kept in a "
1453
1453
"regular string object, which is accessible via the :attr:`data` attribute of"
@@ -1460,19 +1460,19 @@ msgstr ""
1460
1460
"インスタンスの内容には最初に *seq* のコピーが設定されます。\n"
1461
1461
"*seq* 引数は、組み込みの :func:`str` 関数で文字列に変換できる任意のオブジェクトです。"
1462
1462
1463
- #: ../../library/collections.rst:1244
1463
+ #: ../../library/collections.rst:1246
1464
1464
msgid ""
1465
1465
"In addition to supporting the methods and operations of strings, "
1466
1466
":class:`UserString` instances provide the following attribute:"
1467
1467
msgstr "文字列のメソッドと演算をサポートするのに加え、 :class:`UserString` インスタンスは次の属性を提供します:"
1468
1468
1469
- #: ../../library/collections.rst:1249
1469
+ #: ../../library/collections.rst:1251
1470
1470
msgid ""
1471
1471
"A real :class:`str` object used to store the contents of the "
1472
1472
":class:`UserString` class."
1473
1473
msgstr ":class:`UserString` クラスの内容を保存するために使われる実際の :class:`str` オブジェクトです。"
1474
1474
1475
- #: ../../library/collections.rst:1252
1475
+ #: ../../library/collections.rst:1254
1476
1476
msgid ""
1477
1477
"New methods ``__getnewargs__``, ``__rmod__``, ``casefold``, ``format_map``, "
1478
1478
"``isprintable``, and ``maketrans``."