@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version :Python 3.14\n "
1313"Report-Msgid-Bugs-To :\n "
14- "POT-Creation-Date :2025-10-27 14:15+0000\n "
14+ "POT-Creation-Date :2025-11-05 14:15+0000\n "
1515"PO-Revision-Date :2025-09-16 00:00+0000\n "
1616"Last-Translator :python-doc bot, 2025\n "
1717"Language-Team :Japanese (https://app.transifex.com/python-doc/teams/5390/ "
@@ -30,22 +30,13 @@ msgstr "セルオブジェクト (cell object)"
3030msgid ""
3131"\" Cell\" objects are used to implement variables referenced by multiple "
3232"scopes. For each such variable, a cell object is created to store the value; "
33- "the local variables of each stack frame that references the valuecontains a "
33+ "the local variables of each stack frame that references the valuecontain a "
3434"reference to the cells from outer scopes which also use that variable. When "
3535"the value is accessed, the value contained in the cell is used instead of "
3636"the cell object itself. This de-referencing of the cell object requires "
3737"support from the generated byte-code; these are not automatically de-"
3838"referenced when accessed. Cell objects are not likely to be useful elsewhere."
3939msgstr ""
40- "\" セル (cell)\" オブジェクトは、複数のスコープから参照される変数群を実装する"
41- "ために使われます。セルは各変数について作成され、各々の値を記憶します; この値"
42- "を参照する各スタックフレームにおけるローカル変数には、そのスタックフレームの"
43- "外側で同じ値を参照しているセルに対する参照が入ります。セルで表現された値にア"
44- "クセスすると、セルオブジェクト自体の代わりにセル内の値が使われます。このセル"
45- "オブジェクトを使った間接参照 (dereference) は、インタプリタによって生成された"
46- "バイトコード内でサポートされている必要があります; セルオブジェクトにアクセス"
47- "した際に、自動的に間接参照は起こりません。上記以外の状況では、セルオブジェク"
48- "トは役に立たないはずです。"
4940
5041#: ../../c-api/cell.rst:20
5142msgid "The C structure used for cell objects."