8000 [skip ci] Update .po files · python/python-docs-ja@daa4dda · GitHub
[go: up one dir, main page]

Skip to content

Commit daa4dda

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 9fe0bd8 commit daa4dda

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

library/timeit.po

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.7\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2020-04-10 22:51+0000\n"
15+
"POT-Creation-Date: 2020-05-03 13:46+0000\n"
1616
"PO-Revision-Date: 2019-09-01 03:22+0000\n"
1717
"Last-Translator: yuji takesue <taketakeyyy@gmail.com>, 2019\n"
1818
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -321,12 +321,11 @@ msgstr ""
321321
#: ../../library/timeit.rst:253
322322
msgid ""
323323
"If :option:`-n` is not given, a suitable number of loops is calculated by " 8000
324-
"trying successive powers of 10 until the total time is at least 0.2 seconds."
324+
"trying increasing numbers from the sequence 1, 2, 5, 10, 20, 50, ... until "
325+
"the total time is at least 0.2 seconds."
325326
msgstr ""
326-
"オプション :option:`-n` でループの回数が指定されていない場合、10 回から始めて、所要時間が 0.2 "
327-
"秒になるまで回数を増やすことで適切なループ回数が自動計算されるようになっています。"
328327

329-
#: ../../library/timeit.rst:256
328+
#: ../../library/timeit.rst:257
330329
msgid ""
331330
":func:`default_timer` measurements can be affected by other programs running"
332331
" on the same machine, so the best thing to do when accurate timing is "
@@ -340,7 +339,7 @@ msgstr ""
340339
" :option:`-r` オプションはこれに適しています。ほとんどの場合、デフォルトの5回の繰り返しで十分でしょう。 "
341340
":func:`time.process_time` を使用すればCPU時間を測定できます。"
342341

343-
#: ../../library/timeit.rst:264
342+
#: ../../library/timeit.rst:265
344343
msgid ""
345344
"There is a certain baseline overhead associated with executing a pass "
346345
"statement. The code here doesn't try to hide it, but you should be aware of "
@@ -351,21 +350,21 @@ msgstr ""
351350
"文の実行には基本的なオーバーヘッドが存在します。ここにあるコードはこの事実を隠そうとはしていませんが、注意する必要があります。基本的なオーバーヘッドは引数なしでプログラムを起動することにより計測でき、それは"
352351
" Python のバージョンによって異なるでしょう。"
353352

354-
#: ../../library/timeit.rst:273
353+
#: ../../library/timeit.rst:274
355354
msgid "Examples"
356355
msgstr "使用例"
357356

358-
#: ../../library/timeit.rst:275
357+
#: ../../library/timeit.rst:276
359358
msgid ""
360359
"It is possible to provide a setup statement that is executed only once at "
361360
"the beginning:"
362361
msgstr "最初に 1 回だけ実行されるセットアップ文を指定することが可能です:"
363362

364-
#: ../../library/timeit.rst:292
363+
#: ../../library/timeit.rst:293
365364
msgid "The same can be done using the :class:`Timer` class and its methods::"
366365
msgstr "同じことは :class:`Timer` クラスとそのメソッドを使用して行うこともできます::"
367366

368-
#: ../../library/timeit.rst:302
367+
#: ../../library/timeit.rst:303
369368
msgid ""
370369
"The following examples show how to time expressions that contain multiple "
371370
"lines. Here we compare the cost of using :func:`hasattr` vs. "
@@ -375,15 +374,15 @@ msgstr ""
375374
"以下の例は、複数行を含んだ式を計測する方法を示しています。ここでは、オブジェクトの存在する属性と存在しない属性に対してテストするために "
376375
":func:`hasattr` と :keyword:`try`/:keyword:`except` を使用した場合のコストを比較しています:"
377376

378-
#: ../../library/timeit.rst:348
377+
#: ../../library/timeit.rst:349
379378
msgid ""
380379
"To give the :mod:`timeit` module access to functions you define, you can "
381380
"pass a *setup* parameter which contains an import statement::"
382381
msgstr ""
383382
"定義した関数に :mod:`timeit` モジュールがアクセスできるようにするために、 import 文の入った *setup* "
384383
"パラメータを渡すことができます::"
385384

386-
#: ../../library/timeit.rst:359
385+
#: ../../library/timeit.rst:360
387386
msgid ""
388387
"Another option is to pass :func:`globals` to the *globals* parameter, which"
389388
" will cause the code to be executed within your current global namespace. "

0 commit comments

Comments
 (0)
0