@@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version :Python 3.7\n "
13
13
"Report-Msgid-Bugs-To :\n "
14
- "POT-Creation-Date :2020-04-10 22:51 +0000\n "
14
+ "POT-Creation-Date :2020-05-15 13:54 +0000\n "
15
15
"PO-Revision-Date :2019-09-01 03:30+0000\n "
16
16
"Last-Translator :tomo, 2019\n "
17
17
"Language-Team :Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -95,14 +95,12 @@ msgstr ""
95
95
#: ../../library/codeop.rst:45
96
96
msgid ""
97
97
"The *symbol* argument determines whether *source* is compiled as a statement"
98
- " (``'single'``, the default) or as an :term:`expression` (``'eval'``). Any "
99
- "other value will cause :exc:`ValueError` to be raised."
98
+ " (``'single'``, the default), as a sequence of statements (``'exec'``) or as"
99
+ " an :term:`expression` (``'eval'``). Any other value will cause "
100
+ ":exc:`ValueError` to be raised."
100
101
msgstr ""
101
- "*symbol* 引数は *source* が文としてコンパイルされるか(``'single'`` 、デフォルト) 、または :term:`式 "
102
- "<expression>` としてコンパイルされるかを決定します(``'eval'``)。他のどんな値も :exc:`ValueError` "
103
- "を発生させる原因となります。"
104
102
105
- #: ../../library/codeop.rst:51
103
+ #: ../../library/codeop.rst:52
106
104
msgid ""
107
105
"It is possible (but not likely) that the parser stops parsing with a "
108
106
"successful outcome before reaching the end of the source; in this case, "
@@ -112,7 +110,7 @@ msgid ""
112
110
msgstr ""
113
111
"ソースの終わりに達する前に、成功した結果をもってパーサは構文解析を止めることがあります。このような場合、後ろに続く記号はエラーとならずに無視されます。例えば、バックスラッシュの後ろに改行が2つあって、その後ろにゴミがあるかもしれません。パーサのAPIがより良くなればすぐに、この挙動は修正されるでしょう。"
114
112
115
- #: ../../library/codeop.rst:60
113
+ #: ../../library/codeop.rst:61
116
114
msgid ""
117
115
"Instances of this class have :meth:`__call__` methods identical in signature"
118
116
" to the built-in function :func:`compile`, but with the difference that if "
@@ -124,7 +122,7 @@ msgstr ""
124
122
"メソッドを持っていますが、インスタンスが :mod:`__future__` "
125
123
"文を含むプログラムテキストをコンパイルする場合は、インスタンスは有効なその文とともに続くすべてのプログラムテキストを'覚えていて'コンパイルするという違いがあります。"
126
124
127
- #: ../../library/codeop.rst:69
125
+ #: ../../library/codeop.rst:70
128
126
msgid ""
129
127
"Instances of this class have :meth:`__call__` methods identical in signature"
130
128
" to :func:`compile_command`; the difference is that if the instance compiles"