@@ -17,7 +17,7 @@ msgid ""
17
17
msgstr ""
18
18
"Project-Id-Version : Python 3.9\n "
19
19
"Report-Msgid-Bugs-To : \n "
20
- "POT-Creation-Date : 2020-08-12 03:50 +0000\n "
20
+ "POT-Creation-Date : 2020-10-20 04:23 +0000\n "
21
21
"PO-Revision-Date : 2017-02-16 17:48+0000\n "
22
22
"Last-Translator : Yusuke Miyazaki <miyazaki.dev@gmail.com>, 2020\n "
23
23
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -1128,79 +1128,107 @@ msgid "Added the *indent* option."
1128
1128
msgstr ""
1129
1129
1130
1130
#: ../../library/ast.rst:1759
1131
+ msgid "Compiler Flags"
1132
+ msgstr ""
1133
+
1134
+ #: ../../library/ast.rst:1761
1135
+ msgid ""
1136
+ "The following flags may be passed to :func:`compile` in order to change "
1137
+ "effects on the compilation of a program:"
1138
+ msgstr ""
1139
+
1140
+ #: ../../library/ast.rst:1766
1141
+ msgid ""
1142
+ "Enables support for top-level ``await``, ``async for``, ``async with`` and "
1143
+ "async comprehensions."
1144
+ msgstr ""
1145
+
1146
+ #: ../../library/ast.rst:1773
1147
+ msgid ""
1148
+ "Generates and returns an abstract syntax tree instead of returning a "
1149
+ "compiled code object."
1150
+ msgstr ""
1151
+
1152
+ #: ../../library/ast.rst:1778
1153
+ msgid ""
1154
+ "Enables support for :pep:`484` and :pep:`526` style type comments (``# type:"
1155
+ " <type>``, ``# type: ignore <stuff>``)."
1156
+ msgstr ""
1157
+
1158
+ #: ../../library/ast.rst:1787
1131
1159
msgid "Command-Line Usage"
1132
1160
msgstr "コマンドラインからの使用"
1133
1161
1134
- #: ../../library/ast.rst:1763
1162
+ #: ../../library/ast.rst:1791
1135
1163
msgid ""
1136
1164
"The :mod:`ast` module can be executed as a script from the command line. It "
1137
1165
"is as simple as:"
1138
1166
msgstr ""
1139
1167
1140
- #: ../../library/ast.rst:1770
1168
+ #: ../../library/ast.rst:1798
1141
1169
msgid "The following options are accepted:"
1142
1170
msgstr "以下のオプションが使用できます:"
1143
1171
1144
- #: ../../library/ast.rst:1776
1172
+ #: ../../library/ast.rst:1804
1145
1173
msgid "Show the help message and exit."
1146
1174
msgstr ""
1147
1175
1148
- #: ../../library/ast.rst:1781
1176
+ #: ../../library/ast.rst:1809
1149
1177
msgid ""
1150
1178
"Specify what kind of code must be compiled, like the *mode* argument in "
1151
1179
":func:`parse`."
1152
1180
msgstr ""
1153
1181
1154
- #: ../../library/ast.rst:1786
1182
+ #: ../../library/ast.rst:1814
1155
1183
msgid "Don't parse type comments."
1156
1184
msgstr ""
1157
1185
1158
- #: ../../library/ast.rst:1790
1186
+ #: ../../library/ast.rst:1818
1159
1187
msgid "Include attributes such as line numbers and column offsets."
1160
1188
msgstr ""
1161
1189
1162
- #: ../../library/ast.rst:1795
1190
+ #: ../../library/ast.rst:1823
1163
1191
msgid "Indentation of nodes in AST (number of spaces)."
1164
1192
msgstr ""
1165
1193
1166
- #: ../../library/ast.rst:1797
1194
+ #: ../../library/ast.rst:1825
1167
1195
msgid ""
1168
1196
"If :file:`infile` is specified its contents are parsed to AST and dumped to "
1169
1197
"stdout. Otherwise, the content is read from stdin."
1170
1198
msgstr ""
1171
1199
1172
- #: ../../library/ast.rst:1803
1200
+ #: ../../library/ast.rst:1831
1173
1201
msgid ""
1174
1202
"`Green Tree Snakes <https://greentreesnakes.readthedocs.io/>`_, an external "
1175
1203
"documentation resource, has good details on working with Python ASTs."
1176
1204
msgstr ""
1177
1205
"外部ドキュメント `Green Tree Snakes <https://greentreesnakes.readthedocs.io/>`_ には "
1178
1206
"Python AST についての詳細が書かれています。"
1179
1207
1180
- #: ../../library/ast.rst:1806
1208
+ #: ../../library/ast.rst:1834
1181
1209
msgid ""
1182
1210
"`ASTTokens <https://asttokens.readthedocs.io/en/latest/user-guide.html>`_ "
1183
1211
"annotates Python ASTs with the positions of tokens and text in the source "
1184
1212
"code that generated them. This is helpful for tools that make source code "
1185
1213
"transformations."
1186
1214
msgstr ""
1187
1215
1188
- #: ../../library/ast.rst:1811
1216
+ #: ../../library/ast.rst:1839
1189
1217
msgid ""
1190
1218
"`leoAst.py <http://leoeditor.com/appendices.html#leoast-py>`_ unifies the "
1191
1219
"token-based and parse-tree-based views of python programs by inserting two-"
1192
1220
"way links between tokens and ast nodes."
1193
1221
msgstr ""
1194
1222
1195
- #: ../../library/ast.rst:1815
1223
+ #: ../../library/ast.rst:1843
1196
1224
msgid ""
1197
1225
"`LibCST <https://libcst.readthedocs.io/>`_ parses code as a Concrete Syntax "
1198
1226
"Tree that looks like an ast tree and keeps all formatting details. It's "
1199
1227
"useful for building automated refactoring (codemod) applications and "
1200
1228
"linters."
1201
1229
msgstr ""
1202
1230
1203
- #: ../../library/ast.rst:1820
1231
+ #: ../../library/ast.rst:1848
1204
1232
msgid ""
1205
1233
"`Parso <https://parso.readthedocs.io>`_ is a Python parser that supports "
1206
1234
"error recovery and round-trip parsing for different Python versions (in "
0 commit comments