@@ -20,7 +20,7 @@ msgid ""
20
20
msgstr ""
21
21
"Project-Id-Version :Python 3.8\n "
22
22
"Report-Msgid-Bugs-To :\n "
23
- "POT-Creation-Date :2020-01-01 12:19 +0000\n "
23
+ "POT-Creation-Date :2020-01-24 12:31 +0000\n "
24
24
"PO-Revision-Date :2017-02-16 23:39+0000\n "
25
25
"Last-Translator :Tetsuo Koyama <tkoyama010@gmail.com>, 2019\n "
26
26
"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -306,20 +306,15 @@ msgstr ""
306
306
307
307
#: /home/travis/build/python/cpython-doc-catalog/Doc/tutorial/classes.rst:146
308
308
msgid ""
309
- "A special quirk of Python is that -- if no :keyword:`global` statement is in"
310
- " effect -- assignments to names always go into the innermost scope. "
311
- "Assignments do not copy data --- they just bind names to objects. The same "
312
- "is true for deletions: the statement ``del x`` removes the binding of ``x`` "
313
- "from the namespace referenced by the local scope. In fact, all operations "
314
- "that introduce new names use the local scope: in particular, "
315
- ":keyword:`import` statements and function definitions bind the module or "
316
- "function name in the local scope."
317
- msgstr ""
318
- "Python 特有の癖として、代入を行うと -- どの :keyword:`global` 文も有効でない場合は -- "
319
- "名前がいつも最も内側のスコープに入るというものがあります。代入はデータのコピーを行いません --- 単に名前をオブジェクトに結びつける (bind) "
320
- "だけです。オブジェクトの削除でも同じです: ``del x`` は、 ``x`` "
321
- "をローカルスコープが参照している名前空間から削除します。実際、新たな名前を導入する操作は全てローカルスコープを用います。とりわけ、 "
322
- ":keyword:`import` 文や関数定義は、モジュールや関数の名前をローカルスコープに結び付けます。"
309
+ "A special quirk of Python is that -- if no :keyword:`global` or "
310
+ ":keyword:`nonlocal` statement is in effect -- assignments to names always go"
311
+ " into the innermost scope. Assignments do not copy data --- they just bind "
312
+ "names to objects. The same is true for deletions: the statement ``del x`` "
313
+ "removes the binding of ``x`` from the namespace referenced by the local "
314
+ "scope. In fact, all operations that introduce new names use the local "
315
+ "scope: in particular, :keyword:`import` statements and function definitions "
316
+ "bind the module or function name in the local scope."
317
+ msgstr ""
323
318
324
319
#: /home/travis/build/python/cpython-doc-catalog/Doc/tutorial/classes.rst:154
325
320
msgid ""