@@ -17,7 +17,7 @@ msgid ""
1717msgstr ""
1818"Project-Id-Version : Python 3.9\n "
1919"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 "
2121"PO-Revision-Date : 2017-02-16 17:48+0000\n "
2222"Last-Translator : Yusuke Miyazaki <miyazaki.dev@gmail.com>, 2020\n "
2323"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n "
@@ -1128,79 +1128,107 @@ msgid "Added the *indent* option."
11281128msgstr ""
11291129
11301130#: ../../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
11311159msgid "Command-Line Usage"
11321160msgstr "コマンドラインからの使用"
11331161
1134- #: ../../library/ast.rst:1763
1162+ #: ../../library/ast.rst:1791
11351163msgid ""
11361164"The :mod:`ast` module can be executed as a script from the command line. It "
11371165"is as simple as:"
11381166msgstr ""
11391167
1140- #: ../../library/ast.rst:1770
1168+ #: ../../library/ast.rst:1798
11411169msgid "The following options are accepted:"
11421170msgstr "以下のオプションが使用できます:"
11431171
1144- #: ../../library/ast.rst:1776
1172+ #: ../../library/ast.rst:1804
11451173msgid "Show the help message and exit."
11461174msgstr ""
11471175
1148- #: ../../library/ast.rst:1781
1176+ #: ../../library/ast.rst:1809
11491177msgid ""
11501178"Specify what kind of code must be compiled, like the *mode* argument in "
11511179":func:`parse`."
11521180msgstr ""
11531181
1154- #: ../../library/ast.rst:1786
1182+ #: ../../library/ast.rst:1814
11551183msgid "Don't parse type comments."
11561184msgstr ""
11571185
1158- #: ../../library/ast.rst:1790
1186+ #: ../../library/ast.rst:1818
11591187msgid "Include attributes such as line numbers and column offsets."
11601188msgstr ""
11611189
1162- #: ../../library/ast.rst:1795
1190+ #: ../../library/ast.rst:1823
11631191msgid "Indentation of nodes in AST (number of spaces)."
11641192msgstr ""
11651193
1166- #: ../../library/ast.rst:1797
1194+ #: ../../library/ast.rst:1825
11671195msgid ""
11681196"If :file:`infile` is specified its contents are parsed to AST and dumped to "
11691197"stdout. Otherwise, the content is read from stdin."
11701198msgstr ""
11711199
1172- #: ../../library/ast.rst:1803
1200+ #: ../../library/ast.rst:1831
11731201msgid ""
11741202"`Green Tree Snakes <https://greentreesnakes.readthedocs.io/>`_, an external "
11751203"documentation resource, has good details on working with Python ASTs."
11761204msgstr ""
11771205"外部ドキュメント `Green Tree Snakes <https://greentreesnakes.readthedocs.io/>`_ には "
11781206"Python AST についての詳細が書かれています。"
11791207
1180- #: ../../library/ast.rst:1806
1208+ #: ../../library/ast.rst:1834
11811209msgid ""
11821210"`ASTTokens <https://asttokens.readthedocs.io/en/latest/user-guide.html>`_ "
11831211"annotates Python ASTs with the positions of tokens and text in the source "
11841212"code that generated them. This is helpful for tools that make source code "
11851213"transformations."
11861214msgstr ""
11871215
1188- #: ../../library/ast.rst:1811
1216+ #: ../../library/ast.rst:1839
11891217msgid ""
11901218"`leoAst.py <http://leoeditor.com/appendices.html#leoast-py>`_ unifies the "
11911219"token-based and parse-tree-based views of python programs by inserting two-"
11921220"way links between tokens and ast nodes."
11931221msgstr ""
11941222
1195- #: ../../library/ast.rst:1815
1223+ #: ../../library/ast.rst:1843
11961224msgid ""
11971225"`LibCST <https://libcst.readthedocs.io/>`_ parses code as a Concrete Syntax "
11981226"Tree that looks like an ast tree and keeps all formatting details. It's "
11991227"useful for building automated refactoring (codemod) applications and "
12001228"linters."
12011229msgstr ""
12021230
1203- #: ../../library/ast.rst:1820
1231+ #: ../../library/ast.rst:1848
12041232msgid ""
12051233"`Parso <https://parso.readthedocs.io>`_ is a Python parser that supports "
12061234"error recovery and round-trip parsing for different Python versions (in "
0 commit comments