@@ -16,7 +16,7 @@ msgid ""
1616msgstr ""
1717"Project-Id-Version : Python 3.13\n "
1818"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 "
2020"PO-Revision-Date : 2021-06-28 00:52+0000\n "
2121"Last-Translator : TENMYO Masakazu, 2024\n "
2222"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
@@ -3430,31 +3430,23 @@ msgstr ""
34303430
34313431#: ../../faq/programming.rst:1870
34323432msgid ""
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``."
34353435msgstr ""
3436- "1) 代入は新しい名前を作りますが、オブジェクトIDは変えません。 ``new = "
3437- "old`` 代入の後、 ``new is old`` が保証されます。"
34383436
34393437#: ../../faq/programming.rst:1873
34403438msgid ""
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 "
34423440"change object identity. After the list assignment ``s[0] = x``, it is "
34433441"guaranteed that ``s[0] is x``."
34443442msgstr ""
3445- "2) オブジェクト参照を格納するコンテナにオブジェクトを入れても、オブジェクト"
3446- "IDは変わりません。 ``s[0] = x`` リスト代入の後、 ``s[0] is x`` が保証されま"
3447- "す。"
34483443
34493444#: ../../faq/programming.rst:1877
34503445msgid ""
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."
34543449msgstr ""
3455- "3) オブジェクトがシングルトンなら、それはそのオブジェクトのインスタンスは1"
3456- "つだけ存在できることを意味します。 ``a = None`` と ``b = None`` 代入の後、 "
3457- "``a is b`` が保証されます。``None`` がシングルトンのためです。"
34583450
34593451#: ../../faq/programming.rst:1881
34603452msgid ""
0 commit comments