File tree Expand file tree Collapse file tree 3 files changed +3770
-3754
lines changed Expand file tree Collapse file tree 3 files changed +3770
-3754
lines changed Original file line number Diff line number Diff line change @@ -2220,6 +2220,8 @@ msgid ""
2220
2220
"to static type analysis tools, and aid IDEs with code completion and "
2221
2221
"refactoring."
2222
2222
msgstr ""
2223
+ "型ヒントは必須ではなく Python では強制ではありませんが、静的型解析ツールにとって有用であり、IDE "
2224
+ "のコード補完とリファクタリングの手助けになります。"
2223
2225
2224
2226
#: ../../glossary.rst:1081
2225
2227
msgid ""
Original file line number Diff line number Diff line change @@ -28,13 +28,13 @@ msgstr ""
28
28
29
29
#: ../../library/asyncio-task.rst:6
30
30
msgid "Coroutines and Tasks"
31
- msgstr ""
31
+ msgstr "コルーチンと Task "
32
32
33
33
#: ../../library/asyncio-task.rst:8
34
34
msgid ""
35
35
"This section outlines high-level asyncio APIs to work with coroutines and "
36
36
"Tasks."
37
- msgstr ""
37
+ msgstr "この節では、コルーチンと Task を利用する高レベルの asyncio の API の概略を解説します。 "
38
38
39
39
#: ../../library/asyncio-task.rst:19 ../../library/asyncio-task.rst:121
40
40
msgid "Coroutines"
@@ -46,15 +46,17 @@ msgid ""
46
46
"asyncio applications. For example, the following snippet of code (requires "
47
47
"Python 3.7+) prints \" hello\" , waits 1 second, and then prints \" world\" ::"
48
48
msgstr ""
49
+ "async/await 構文で宣言されたコルーチンは、 asyncio を使ったアプリケーションを書く手法として好ましいです。\n"
50
+ "例えば、次のコードスニペット (Python 3.7 以降が必要) は \" hello\" を出力し、そこから 1 秒待って \" world\" を出力します::"
49
51
50
52
#: ../../library/asyncio-task.rst:37
51
53
msgid ""
52
54
"Note that simply calling a coroutine will not schedule it to be executed::"
53
- msgstr ""
55
+ msgstr "単にコルーチンを呼び出しただけでは、コルーチンの実行スケジュールは予約されていないことに注意してください:: "
54
56
55
57
#: ../../library/asyncio-task.rst:43
56
58
msgid "To actually run a coroutine asyncio provides three main mechanisms:"
57
- msgstr ""
59
+ msgstr "実際にコルーチンを実行する方法は、asyncio では主なもので 3 つの機構が提供されています: "
58
60
59
61
#: ../../library/asyncio-task.rst:45
60
62
msgid ""
You can’t perform that action at this time.
0 commit comments