Skip to content

Commit 9bd52c9

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 7f0513a commit 9bd52c9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

reference/compound_stmts.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 2.7\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2018-01-21 01:52+0900\n"
12-
"PO-Revision-Date: 2017-09-22 17:57+0000\n"
11+
"POT-Creation-Date: 2018-07-31 13:59+0900\n"
12+
"PO-Revision-Date: 2018-07-31 05:11+0000\n"
1313
"Last-Translator: tomo🐧\n"
1414
"Language-Team: Japanese (http://www.transifex.com/python-doc/python-27/language/ja/)\n"
1515
"MIME-Version: 1.0\n"
@@ -172,7 +172,7 @@ msgstr "ループが終了してもターゲットリストは削除されませ
172172
#: ../../reference/compound_stmts.rst:187
173173
msgid ""
174174
"There is a subtlety when the sequence is being modified by the loop (this "
175-
"can only occur for mutable sequences, i.e. lists). An internal counter is "
175+
"can only occur for mutable sequences, e.g. lists). An internal counter is "
176176
"used to keep track of which item is used next, and this is incremented on "
177177
"each iteration. When this counter has reached the length of the sequence "
178178
"the loop terminates. This means that if the suite deletes the current (or a"
@@ -182,7 +182,7 @@ msgid ""
182182
"item, the current item will be treated again the next time through the loop."
183183
" This can lead to nasty bugs that can be avoided by making a temporary copy "
184184
"using a slice of the whole sequence, e.g., ::"
185-
msgstr "ループ中のシーケンスの変更には微妙な問題があります ( これは変更可能なシーケンス、すなわちリストで起こります ) 。どの要素が次に使われるかを追跡するために、内部的なカウンタが使われており、このカウンタは反復処理を行うごとに加算されます。このカウンタがシーケンスの長さに達すると、ループは終了します。このことは、スイート中でシーケンスから現在の ( または以前の ) 要素を除去すると、 ( 次の要素のインデクスは、すでに取り扱った要素のインデクスになるために ) 次の要素が飛ばされることを意味します。同様に、スイート中でシーケンス中の現在の要素以前に要素を挿入すると、ループ中で現在の要素が再度扱われることになります。こうした仕様は、厄介なバグになります。シーケンス全体に相当するスライスを使って一時的なコピーを作ると、これを避けることができます。 ::"
185+
msgstr ""
186186

187187
#: ../../reference/compound_stmts.rst:208
188188
msgid "The :keyword:`try` statement"

0 commit comments

Comments
 (0)