@@ -16,7 +16,7 @@ msgid ""
16
16
msgstr ""
17
17
"Project-Id-Version : Python 3.13\n "
18
18
"Report-Msgid-Bugs-To : \n "
19
- "POT-Creation-Date : 2025-04-04 14:18 +0000\n "
19
+ "POT-Creation-Date : 2025-04-11 14:19 +0000\n "
20
20
"PO-Revision-Date : 2021-06-28 00:52+0000\n "
21
21
"Last-Translator : TENMYO Masakazu, 2024\n "
22
22
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
@@ -3430,31 +3430,23 @@ msgstr ""
3430
3430
3431
3431
#: ../../faq/programming.rst:1870
3432
3432
msgid ""
3433
- "1) Assignments create new names but do not change object identity. After "
3434
- "the assignment ``new = old``, it is guaranteed that ``new is old``."
3433
+ "Assignments create new names but do not change object identity. After the "
3434
+ "assignment ``new = old``, it is guaranteed that ``new is old``."
3435
3435
msgstr ""
3436
- "1) 代入は新しい名前を作りますが、オブジェクトIDは変えません。 ``new = "
3437
- "old`` 代入の後、 ``new is old`` が保証されます。"
3438
3436
3439
3437
#: ../../faq/programming.rst:1873
3440
3438
msgid ""
3441
- "2) Putting an object in a container that stores object references does not "
3439
+ "Putting an object in a container that stores object references does not "
3442
3440
"change object identity. After the list assignment ``s[0] = x``, it is "
3443
3441
"guaranteed that ``s[0] is x``."
3444
3442
msgstr ""
3445
- "2) オブジェクト参照を格納するコンテナにオブジェクトを入れても、オブジェクト"
3446
- "IDは変わりません。 ``s[0] = x`` リスト代入の後、 ``s[0] is x`` が保証されま"
3447
- "す。"
3448
3443
3449
3444
#: ../../faq/programming.rst:1877
3450
3445
msgid ""
3451
- "3) If an object is a singleton, it means that only one instance of that "
3452
- "object can exist. After the assignments ``a = None`` and ``b = None``, it "
3453
- "is guaranteed that ``a is b`` because ``None`` is a singleton."
3446
+ "If an object is a singleton, it means that only one instance of that object "
3447
+ "can exist. After the assignments ``a = None`` and ``b = None``, it is "
3448
+ "guaranteed that ``a is b`` because ``None`` is a singleton."
3454
3449
msgstr ""
3455
- "3) オブジェクトがシングルトンなら、それはそのオブジェクトのインスタンスは1"
3456
- "つだけ存在できることを意味します。 ``a = None`` と ``b = None`` 代入の後、 "
3457
- "``a is b`` が保証されます。``None`` がシングルトンのためです。"
3458
3450
3459
3451
#: ../../faq/programming.rst:1881
3460
3452
msgid ""
0 commit comments