@@ -13,7 +13,7 @@ msgid ""
13
13
msgstr ""
14
14
"Project-Id-Version : Python 3.10\n "
15
15
"Report-Msgid-Bugs-To : \n "
16
- "POT-Creation-Date : 2021-07-22 13:04 +0000\n "
16
+ "POT-Creation-Date : 2021-08-03 13:12 +0000\n "
17
17
"PO-Revision-Date : 2021-06-28 00:56+0000\n "
18
18
"Last-Translator : tomo, 2021\n "
19
19
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -1355,15 +1355,14 @@ msgstr ""
1355
1355
#: ../../library/collections.rst:1173
1356
1356
msgid ""
1357
1357
"An :class:`OrderedDict` would also be useful for implementing variants of "
1358
- ":func:`functools.lru_cache`:: "
1358
+ ":func:`functools.lru_cache`:"
1359
1359
msgstr ""
1360
- ":class:`OrderedDict` は :func:`functools.lru_cache` の変種を実装するのにも役に立ちます::"
1361
1360
1362
- #: ../../library/collections.rst:1198
1361
+ #: ../../library/collections.rst:1214
1363
1362
msgid ":class:`UserDict` objects"
1364
1363
msgstr ":class:`UserDict` オブジェクト"
1365
1364
1366
- #: ../../library/collections.rst:1200
1365
+ #: ../../library/collections.rst:1216
1367
1366
msgid ""
1368
1367
"The class, :class:`UserDict` acts as a wrapper around dictionary objects. "
1369
1368
"The need for this class has been partially supplanted by the ability to "
@@ -1374,7 +1373,7 @@ msgstr ""
1374
1373
"から直接的にサブクラス化できる能力に部分的に取って代わられました; "
1375
1374
"しかし、根底の辞書に属性としてアクセスできるので、このクラスを使った方が簡単になることもあります。"
1376
1375
1377
- #: ../../library/collections.rst:1208
1376
+ #: ../../library/collections.rst:1224
1378
1377
msgid ""
1379
1378
"Class that simulates a dictionary. The instance's contents are kept in a "
1380
1379
"regular dictionary, which is accessible via the :attr:`data` attribute of "
@@ -1383,22 +1382,22 @@ msgid ""
1383
1382
"not be kept, allowing it to be used for other purposes."
1384
1383
msgstr ""
1385
1384
1386
- #: ../../library/collections.rst:1214
1385
+ #: ../../library/collections.rst:1230
1387
1386
msgid ""
1388
1387
"In addition to supporting the methods and operations of mappings, "
1389
1388
":class:`UserDict` instances provide the following attribute:"
1390
1389
msgstr "マッピングのメソッドと演算をサポートするのに加え、 :class:`UserDict` インスタンスは以下の属性を提供します:"
1391
1390
1392
- #: ../../library/collections.rst:1219
1391
+ #: ../../library/collections.rst:1235
1393
1392
msgid ""
1394
1393
"A real dictionary used to store the contents of the :class:`UserDict` class."
1395
1394
msgstr ":class:`UserDict` クラスの内容を保存するために使われる実際の辞書です。"
1396
1395
1397
- #: ../../library/collections.rst:1225
1396
+ #: ../../library/collections.rst:1241
1398
1397
msgid ":class:`UserList` objects"
1399
1398
msgstr ":class:`UserList` オブジェクト"
1400
1399
1401
- #: ../../library/collections.rst:1227
1400
+ #: ../../library/collections.rst:1243
1402
1401
msgid ""
1403
1402
"This class acts as a wrapper around list objects. It is a useful base class"
1404
1403
" for your own list-like classes which can inherit from them and override "
@@ -1407,7 +1406,7 @@ msgid ""
1407
1406
msgstr ""
1408
1407
"このクラスはリストオブジェクトのラッパとしてはたらきます。これは独自のリスト風クラスの基底クラスとして便利で、既存のメソッドをオーバーライドしたり新しいメソッドを加えたりできます。こうして、リストに新しい振る舞いを加えられます。"
1409
1408
1410
- #: ../../library/collections.rst:1232
1409
+ #: ../../library/collections.rst:1248
1411
1410
msgid ""
1412
1411
"The need for this class has been partially supplanted by the ability to "
1413
1412
"subclass directly from :class:`list`; however, this class can be easier to "
@@ -1416,7 +1415,7 @@ msgstr ""
1416
1415
"このクラスの必要性は、 :class:`list` から直接的にサブクラス化できる能力に部分的に取って代わられました; "
1417
1416
"しかし、根底のリストに属性としてアクセスできるので、このクラスを使った方が簡単になることもあります。"
1418
1417
1419
- #: ../../library/collections.rst:1238
1418
+ #: ../../library/collections.rst:1254
1420
1419
msgid ""
1421
1420
"Class that simulates a list. The instance's contents are kept in a regular "
1422
1421
"list, which is accessible via the :attr:`data` attribute of "
@@ -1428,19 +1427,19 @@ msgstr ""
1428
1427
":attr:`data` 属性を通してアクセスできます。インスタンスの内容は最初に *list* のコピーに設定されますが、デフォルトでは空リスト "
1429
1428
"``[]`` です。 *list* は何らかのイテラブル、例えば通常の Python リストや :class:`UserList` オブジェクト、です。"
1430
1429
1431
- #: ../../library/collections.rst:1244
1430
+ #: ../../library/collections.rst:1260
1432
1431
msgid ""
1433
1432
"In addition to supporting the methods and operations of mutable sequences, "
1434
1433
":class:`UserList` instances provide the following attribute:"
1435
1434
msgstr "ミュータブルシーケンスのメソッドと演算をサポートするのに加え、 :class:`UserList` インスタンスは以下の属性を提供します:"
1436
1435
1437
- #: ../../library/collections.rst:1249
1436
+ #: ../../library/collections.rst:1265
1438
1437
msgid ""
1439
1438
"A real :class:`list` object used to store the contents of the "
1440
1439
":class:`UserList` class."
1441
1440
msgstr ":class:`UserList` クラスの内容を保存するために使われる実際の :class:`list` オブジェクトです。"
1442
1441
1443
- #: ../../library/collections.rst:1252
1442
+ #: ../../library/collections.rst:1268
1444
1443
msgid ""
1445
1444
"**Subclassing requirements:** Subclasses of :class:`UserList` are expected "
1446
1445
"to offer a constructor which can be called with either no arguments or one "
@@ -1452,7 +1451,7 @@ msgstr ""
1452
1451
"**サブクラス化の要件:** :class:`UserList` "
1453
1452
"のサブクラスは引数なしか、あるいは一つの引数のどちらかとともに呼び出せるコンストラクタを提供することが期待されています。新しいシーケンスを返すリスト演算は現在の実装クラスのインスタンスを作成しようとします。そのために、データ元として使われるシーケンスオブジェクトである一つのパラメータとともにコンストラクタを呼び出せると想定しています。"
1454
1453
1455
- #: ../../library/collections.rst:1259
1454
+ #: ../../library/collections.rst:1275
1456
1455
msgid ""
1457
1456
"If a derived class does not wish to comply with this requirement, all of the"
1458
1457
" special methods supported by this class will need to be overridden; please "
@@ -1461,11 +1460,11 @@ msgid ""
1461
1460
msgstr ""
1462
1461
"派生クラスがこの要求に従いたくないならば、このクラスがサポートしているすべての特殊メソッドはオーバーライドされる必要があります。その場合に提供される必要のあるメソッドについての情報は、ソースを参考にしてください。"
1463
1462
1464
- #: ../../library/collections.rst:1265
1463
+ #: ../../library/collections.rst:1281
1465
1464
msgid ":class:`UserString` objects"
1466
1465
msgstr ":class:`UserString` オブジェクト"
1467
1466
1468
- #: ../../library/collections.rst:1267
1467
+ #: ../../library/collections.rst:1283
1469
1468
msgid ""
1470
1469
"The class, :class:`UserString` acts as a wrapper around string objects. The "
1471
1470
"need for this class has been partially supplanted by the ability to subclass"
@@ -1476,7 +1475,7 @@ msgstr ""
1476
1475
"から直接的にサブクラス化できる能力に部分的に取って代わられました; "
1477
1476
"しかし、根底の文字列に属性としてアクセスできるので、このクラスを使った方が簡単になることもあります。"
1478
1477
1479
- #: ../../library/collections.rst:1275
1478
+ #: ../../library/collections.rst:1291
1480
1479
msgid ""
1481
1480
"Class that simulates a string object. The instance's content is kept in a "
1482
1481
"regular string object, which is accessible via the :attr:`data` attribute of"
@@ -1489,19 +1488,19 @@ msgstr ""
1489
1488
"インスタンスの内容には最初に *seq* のコピーが設定されます。\n"
1490
1489
"*seq* 引数は、組み込みの :func:`str` 関数で文字列に変換できる任意のオブジェクトです。"
1491
1490
1492
- #: ../../library/collections.rst:1282
1491
+ #: ../../library/collections.rst:1298
1493
1492
msgid ""
1494
1493
"In addition to supporting the methods and operations of strings, "
1495
1494
":class:`UserString` instances provide the following attribute:"
1496
1495
msgstr "文字列のメソッドと演算をサポートするのに加え、 :class:`UserString` インスタンスは次の属性を提供します:"
1497
1496
1498
- #: ../../library/collections.rst:1287
1497
+ #: ../../library/collections.rst:1303
1499
1498
msgid ""
1500
1499
"A real :class:`str` object used to store the contents of the "
1501
1500
":class:`UserString` class."
1502
1501
msgstr ":class:`UserString` クラスの内容を保存するために使われる実際の :class:`str` オブジェクトです。"
1503
1502
1504
- #: ../../library/collections.rst:1290
1503
+ #: ../../library/collections.rst:1306
1505
1504
msgid ""
1506
1505
"New methods ``__getnewargs__``, ``__rmod__``, ``casefold``, ``format_map``, "
1507
1506
"``isprintable``, and ``maketrans``."
0 commit comments