@@ -12,7 +12,7 @@ msgid ""
12
12
msgstr ""
13
13
"Project-Id-Version :Python 3.8\n "
14
14
"Report-Msgid-Bugs-To :\n "
15
- "POT-Creation-Date :2021-02-20 16:31 +0000\n "
15
+ "POT-Creation-Date :2021-03-28 16:54 +0000\n "
16
16
"PO-Revision-Date :2020-05-30 12:16+0000\n "
17
17
"Last-Translator :mollinaca, 2020\n "
18
18
"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -856,12 +856,9 @@ msgid ""
856
856
"evaluating to the value of the annotation. Return annotations are defined "
857
857
"by a literal ``->``, followed by an expression, between the parameter list "
858
858
"and the colon denoting the end of the :keyword:`def` statement. The "
859
- "following example has apositional argument,a keyword argument, and the "
859
+ "following example has arequired argument,an optional argument, and the "
860
860
"return value annotated::"
861
861
msgstr ""
862
- ":term:`アノテーション <function annotation>` は関数の :attr:`__annotations__` 属性に辞書として格納され、関数の他の部分には何も影響がありません。\n"
863
- "パラメータアノテーションは、パラメータ名の後にコロンを続けることによって定義され、その後にアノテーションの値として評価される式が置かれます。\n"
864
- "戻り値アノテーションは、パラメータリストと :keyword:`def` ステートメントの終わりを表すコロンの間に置かれたリテラル ``->`` によって定義され、その後に式が続きます。次の例は位置引数とキーワード引数、そして戻り値アノテーションを持っています::"
865
862
866
863
#: ../../tutorial/controlflow.rst:885
867
864
msgid "Intermezzo: Coding Style"