@@ -20,7 +20,7 @@ msgid ""
20
20
msgstr ""
21
21
"Project-Id-Version : Python 3.9\n "
22
22
"Report-Msgid-Bugs-To : \n "
23
- "POT-Creation-Date : 2020-08-20 03:54 +0000\n "
23
+ "POT-Creation-Date : 2020-09-28 04:12 +0000\n "
24
24
"PO-Revision-Date : 2017-02-16 17:32+0000\n "
25
25
"Last-Translator : tomo, 2020\n "
26
26
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -2249,25 +2249,25 @@ msgid ""
2249
2249
"example::"
2250
2250
msgstr "型エイリアスは :term:`型ヒント <type hint>` を単純化するのに有用です。例えば::"
2251
2251
2252
- #: ../../glossary.rst:1093
2252
+ #: ../../glossary.rst:1091
2253
2253
msgid "could be made more readable like this::"
2254
2254
msgstr "これは次のようにより読みやすくできます::"
2255
2255
2256
- #: ../../glossary.rst:1102 ../../glossary.rst:1116
2256
+ #: ../../glossary.rst:1098 ../../glossary.rst:1112
2257
2257
msgid "See :mod:`typing` and :pep:`484`, which describe this functionality."
2258
2258
msgstr "機能の説明がある :mod:`typing` と :pep:`484` を参照してください。"
2259
2259
2260
- #: ../../glossary.rst:1103
2260
+ #: ../../glossary.rst:1099
2261
2261
msgid "type hint"
2262
2262
msgstr "type hint"
2263
2263
2264
- #: ../../glossary.rst:1105
2264
+ #: ../../glossary.rst:1101
2265
2265
msgid ""
2266
2266
"An :term:`annotation` that specifies the expected type for a variable, a "
2267
2267
"class attribute, or a function parameter or return value."
2268
2268
msgstr "(型ヒント) 変数、クラス属性、関数のパラメータや返り値の期待される型を指定する :term:`annotation` です。"
2269
2269
2270
- #: ../../glossary.rst:1108
2270
+ #: ../../glossary.rst:1104
2271
2271
msgid ""
2272
2272
"Type hints are optional and are not enforced by Python but they are useful "
2273
2273
"to static type analysis tools, and aid IDEs with code completion and "
@@ -2276,18 +2276,18 @@ msgstr ""
2276
2276
"型ヒントは必須ではなく Python では強制ではありませんが、静的型解析ツールにとって有用であり、IDE "
2277
2277
"のコード補完とリファクタリングの手助けになります。"
2278
2278
2279
- #: ../../glossary.rst:1112
2279
+ #: ../../glossary.rst:1108
2280
2280
msgid ""
2281
2281
"Type hints of global variables, class attributes, and functions, but not "
2282
2282
"local variables, can be accessed using :func:`typing.get_type_hints`."
2283
2283
msgstr ""
2284
2284
"グローバル変数、クラス属性、関数で、ローカル変数でないものの型ヒントは :func:`typing.get_type_hints` で取得できます。"
2285
2285
2286
- #: ../../glossary.rst:1117
2286
+ #: ../../glossary.rst:1113
2287
2287
msgid "universal newlines"
2288
2288
msgstr "universal newlines"
2289
2289
2290
- #: ../../glossary.rst:1119
2290
+ #: ../../glossary.rst:1115
2291
2291
msgid ""
2292
2292
"A manner of interpreting text streams in which all of the following are "
2293
2293
"recognized as ending a line: the Unix end-of-line convention ``'\\ n'``, the "
@@ -2299,44 +2299,44 @@ msgstr ""
2299
2299
"``'\\ r\\ n'``、古い Macintosh の規定 ``'\\ r'``。利用法について詳しくは、 :pep:`278` と "
2300
2300
":pep:`3116` 、さらに :func:`bytes.splitlines` も参照してください。"
2301
2301
2302
- #: ../../glossary.rst:1124
2302
+ #: ../../glossary.rst:1120
2303
2303
msgid "variable annotation"
2304
2304
msgstr "variable annotation"
2305
2305
2306
- #: ../../glossary.rst:1126
2306
+ #: ../../glossary.rst:1122
2307
2307
msgid "An :term:`annotation` of a variable or a class attribute."
2308
2308
msgstr "(変数アノテーション) 変数あるいはクラス属性の :term:`annotation` 。"
2309
2309
2310
- #: ../../glossary.rst:1128
2310
+ #: ../../glossary.rst:1124
2311
2311
msgid ""
2312
2312
"When annotating a variable or a class attribute, assignment is optional::"
2313
2313
msgstr "変数あるいはクラス属性に注釈を付けたときは、代入部分は任意です::"
2314
2314
2315
- #: ../../glossary.rst:1133
2315
+ #: ../../glossary.rst:1129
2316
2316
msgid ""
2317
2317
"Variable annotations are usually used for :term:`type hints <type hint>`: "
2318
2318
"for example this variable is expected to take :class:`int` values::"
2319
2319
msgstr ""
2320
2320
"変数アノテーションは通常は :term:`型ヒント<type hint>` のために使われます: 例えば、この変数は :class:`int` "
2321
2321
"の値を取ることを期待されています::"
2322
2322
2323
- #: ../../glossary.rst:1139
2323
+ #: ../../glossary.rst:1135
2324
2324
msgid "Variable annotation syntax is explained in section :ref:`annassign`."
2325
2325
msgstr "変数アノテーションの構文については :ref:`annassign` 節で解説しています。"
2326
2326
2327
- #: ../../glossary.rst:1141
2327
+ #: ../../glossary.rst:1137
2328
2328
msgid ""
2329
2329
"See :term:`function annotation`, :pep:`484` and :pep:`526`, which describe "
2330
2330
"this functionality."
2331
2331
msgstr ""
2332
2332
"この機能について解説している :term:`function annotation`, :pep:`484`, :pep:`526` "
2333
2333
"を参照してください。"
2334
2334
2335
- #: ../../glossary.rst:1143
2335
+ #: ../../glossary.rst:1139
2336
2336
msgid "virtual environment"
2337
2337
msgstr "virtual environment"
2338
2338
2339
- #: ../../glossary.rst:1145
2339
+ #: ../../glossary.rst:1141
2340
2340
msgid ""
2341
2341
"A cooperatively isolated runtime environment that allows Python users and "
2342
2342
"applications to install and upgrade Python distribution packages without "
@@ -2346,27 +2346,27 @@ msgstr ""
2346
2346
"(仮想環境)協調的に切り離された実行環境です。これにより Python ユーザとアプリケーションは同じシステム上で動いている他の Python "
2347
2347
"アプリケーションの挙動に干渉することなく Python パッケージのインストールと更新を行うことができます。"
2348
2348
2349
- #: ../../glossary.rst:1150
2349
+ #: ../../glossary.rst:1146
2350
2350
msgid "See also :mod:`venv`."
2351
2351
msgstr ":mod:`venv` を参照してください。"
2352
2352
2353
- #: ../../glossary.rst:1151
2353
+ #: ../../glossary.rst:1147
2354
2354
msgid "virtual machine"
2355
2355
msgstr "virtual machine"
2356
2356
2357
- #: ../../glossary.rst:1153
2357
+ #: ../../glossary.rst:1149
2358
2358
msgid ""
2359
2359
"A computer defined entirely in software. Python's virtual machine executes "
2360
2360
"the :term:`bytecode` emitted by the bytecode compiler."
2361
2361
msgstr ""
2362
2362
"(仮想マシン) 完全にソフトウェアにより定義されたコンピュータ。 Python の仮想マシンは、バイトコードコンパイラが出力した "
2363
2363
":term:`バイトコード <bytecode>` を実行します。"
2364
2364
2365
- #: ../../glossary.rst:1155
2365
+ #: ../../glossary.rst:1151
2366
2366
msgid "Zen of Python"
2367
2367
msgstr "Zen of Python"
2368
2368
2369
- #: ../../glossary.rst:1157
2369
+ #: ../../glossary.rst:1153
2370
2370
msgid ""
2371
2371
"Listing of Python design principles and philosophies that are helpful in "
2372
2372
"understanding and using the language. The listing can be found by typing "
0 commit comments