Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitb465a43

Browse files
Autobuild bot on TravisCIcocoatomo
Autobuild bot on TravisCI
authored andcommitted
[skip ci] Update .po files
1 parentc1e2dc7 commitb465a43

File tree

2 files changed

+16
-21
lines changed

2 files changed

+16
-21
lines changed

‎library/random.po

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ msgid ""
1818
msgstr ""
1919
"Project-Id-Version:Python 3.8\n"
2020
"Report-Msgid-Bugs-To:\n"
21-
"POT-Creation-Date:2020-04-23 13:45+0000\n"
21+
"POT-Creation-Date:2020-05-03 13:46+0000\n"
2222
"PO-Revision-Date:2017-02-16 23:24+0000\n"
2323
"Last-Translator:Tetsuo Koyama <tkoyama010@gmail.com>, 2020\n"
2424
"Language-Team:Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -205,14 +205,10 @@ msgstr ""
205205
#:../../library/random.rst:104
206206
msgid""
207207
"Returns a Python integer with *k* random bits. This method is supplied with "
208-
"the MersenneTwister generator and some other generators may also provide it "
209-
"as an optional part of the API. When available, :meth:`getrandbits` enables "
210-
":meth:`randrange` to handle arbitrarily large ranges."
211-
msgstr""
212-
"*k* 桁の乱数ビットで Python "
213-
"の整数を生成し、返します。このメソッドはメルセンヌツイスタ生成器で提供されており、その他の乱数生成器でもオプションの API "
214-
"として提供されている場合があります。:meth:`randrange` メソッドを使用できる場合、:meth:`getrandbits` "
215-
"はそのメソッドを有効にし、任意の大きな範囲を扱えるようになります。"
208+
"the Mersenne Twister generator and some other generators may also provide it"
209+
" as an optional part of the API. When available, :meth:`getrandbits` enables"
210+
" :meth:`randrange` to handle arbitrarily large ranges."
211+
msgstr""
216212

217213
#:../../library/random.rst:111
218214
msgid"Functions for integers"

‎library/timeit.po

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ msgid ""
1919
msgstr ""
2020
"Project-Id-Version:Python 3.8\n"
2121
"Report-Msgid-Bugs-To:\n"
22-
"POT-Creation-Date:2020-02-09 12:40+0000\n"
22+
"POT-Creation-Date:2020-05-03 13:46+0000\n"
2323
"PO-Revision-Date:2017-02-16 23:30+0000\n"
2424
"Last-Translator:tomo, 2019\n"
2525
"Language-Team:Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -328,12 +328,11 @@ msgstr ""
328328
#:../../library/timeit.rst:253
329329
msgid""
330330
"If :option:`-n` is not given, a suitable number of loops is calculated by "
331-
"trying successive powers of 10 until the total time is at least 0.2 seconds."
331+
"trying increasing numbers from the sequence 1, 2, 5, 10, 20, 50, ... until "
332+
"the total time is at least 0.2 seconds."
332333
msgstr""
333-
"オプション :option:`-n` でループの回数が指定されていない場合、10 回から始めて、所要時間が 0.2 "
334-
"秒になるまで回数を増やすことで適切なループ回数が自動計算されるようになっています。"
335334

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

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

361-
#:../../library/timeit.rst:273
360+
#:../../library/timeit.rst:274
362361
msgid"Examples"
363362
msgstr"使用例"
364363

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

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

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

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

393-
#:../../library/timeit.rst:359
392+
#:../../library/timeit.rst:360
394393
msgid""
395394
"Another option is to pass :func:`globals` to the *globals* parameter, which"
396395
" will cause the code to be executed within your current global namespace. "

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp