-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathast.po
1743 lines (1531 loc) · 80.1 KB
/
ast.po
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2022, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Rafael Fontenelle <[email protected]>, 2022
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.10\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2022-12-30 14:59+0000\n"
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
"Last-Translator: Rafael Fontenelle <[email protected]>, 2022\n"
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/"
"ja/)\n"
"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: ../../library/ast.rst:2
msgid ":mod:`ast` --- Abstract Syntax Trees"
msgstr ":mod:`ast` --- 抽象構文木"
#: ../../library/ast.rst:14
msgid "**Source code:** :source:`Lib/ast.py`"
msgstr "**ソースコード:** :source:`Lib/ast.py`"
#: ../../library/ast.rst:18
msgid ""
"The :mod:`ast` module helps Python applications to process trees of the "
"Python abstract syntax grammar. The abstract syntax itself might change "
"with each Python release; this module helps to find out programmatically "
"what the current grammar looks like."
msgstr ""
":mod:`ast` モジュールは、Python アプリケーションで Python の抽象構文木を処理"
"しやすくするものです。抽象構文そのものは、Python のリリースごとに変化する可能"
"性があります。このモジュールを使用すると、現在の文法をプログラム上で知る助け"
"になるでしょう。"
#: ../../library/ast.rst:23
msgid ""
"An abstract syntax tree can be generated by passing :data:`ast."
"PyCF_ONLY_AST` as a flag to the :func:`compile` built-in function, or using "
"the :func:`parse` helper provided in this module. The result will be a tree "
"of objects whose classes all inherit from :class:`ast.AST`. An abstract "
"syntax tree can be compiled into a Python code object using the built-in :"
"func:`compile` function."
msgstr ""
"抽象構文木を作成するには、 :data:`ast.PyCF_ONLY_AST` を組み込み関数 :func:"
"`compile` のフラグとして渡すか、あるいはこのモジュールで提供されているヘル"
"パー関数 :func:`parse` を使います。その結果は、 :class:`ast.AST` を継承したク"
"ラスのオブジェクトのツリーとなります。抽象構文木は組み込み関数 :func:"
"`compile` を使って Python コード・オブジェクトにコンパイルすることができま"
"す。"
#: ../../library/ast.rst:33
msgid "Abstract Grammar"
msgstr "抽象文法 (Abstract Grammar)"
#: ../../library/ast.rst:35
msgid "The abstract grammar is currently defined as follows:"
msgstr "抽象文法は、現在次のように定義されています:"
#: ../../library/ast.rst:42
msgid "Node classes"
msgstr "Node クラス"
#: ../../library/ast.rst:46
msgid ""
"This is the base of all AST node classes. The actual node classes are "
"derived from the :file:`Parser/Python.asdl` file, which is reproduced :ref:"
"`above <abstract-grammar>`. They are defined in the :mod:`_ast` C module "
"and re-exported in :mod:`ast`."
msgstr ""
"このクラスは全ての AST ノード・クラスの基底です。実際のノード・クラスは :ref:"
"`先に <abstract-grammar>` 示した :file:`Parser/Python.asdl` ファイルから派生"
"したものです。これらのクラスは :mod:`_ast` C モジュールで定義され、 :mod:"
"`ast` にもエクスポートし直されています。"
#: ../../library/ast.rst:51
msgid ""
"There is one class defined for each left-hand side symbol in the abstract "
"grammar (for example, :class:`ast.stmt` or :class:`ast.expr`). In addition, "
"there is one class defined for each constructor on the right-hand side; "
"these classes inherit from the classes for the left-hand side trees. For "
"example, :class:`ast.BinOp` inherits from :class:`ast.expr`. For production "
"rules with alternatives (aka \"sums\"), the left-hand side class is "
"abstract: only instances of specific constructor nodes are ever created."
msgstr ""
"抽象文法の左辺のシンボル一つずつにそれぞれ一つのクラスがあります (たとえば :"
"class:`ast.stmt` や :class:`ast.expr`)。それに加えて、右辺のコンストラクタ一"
"つずつにそれぞれ一つのクラスがあり、これらのクラスは左辺のツリーのクラスを継"
"承しています。たとえば、 :class:`ast.BinOp` は :class:`ast.expr` から継承して"
"います。代替を伴った生成規則 (production rules with alternatives) (別名 "
"\"sums\") の場合、左辺は抽象クラスとなり、特定のコンストラクタ・ノードのイン"
"スタンスのみが作成されます。"
#: ../../library/ast.rst:64
msgid ""
"Each concrete class has an attribute :attr:`_fields` which gives the names "
"of all child nodes."
msgstr ""
"各具象クラスは属性 :attr:`_fields` を持っており、すべての子ノードの名前をそこ"
"に保持しています。"
#: ../../library/ast.rst:67
msgid ""
"Each instance of a concrete class has one attribute for each child node, of "
"the type as defined in the grammar. For example, :class:`ast.BinOp` "
"instances have an attribute :attr:`left` of type :class:`ast.expr`."
msgstr ""
"具象クラスのインスタンスは、各子ノードに対してそれぞれひとつの属性を持ってい"
"ます。この属性は、文法で定義された型となります。たとえば :class:`ast.BinOp` "
"のインスタンスは :attr:`left` という属性を持っており、その型は :class:`ast."
"expr` です。"
#: ../../library/ast.rst:71
msgid ""
"If these attributes are marked as optional in the grammar (using a question "
"mark), the value might be ``None``. If the attributes can have zero-or-more "
"values (marked with an asterisk), the values are represented as Python "
"lists. All possible attributes must be present and have valid values when "
"compiling an AST with :func:`compile`."
msgstr ""
"これらの属性が、文法上 (クエスチョンマークを用いて) オプションであるとマーク"
"されている場合は、その値が ``None`` となることもあります。属性が0個以上の複数"
"の値をとりうる場合 (アスタリスクでマークされている場合) は、値は Python のリ"
"ストで表されます。全ての属性は AST を :func:`compile` でコンパイルする際には"
"存在しなければならず、そして妥当な値でなければなりません。"
#: ../../library/ast.rst:82
msgid ""
"Instances of :class:`ast.expr` and :class:`ast.stmt` subclasses have :attr:"
"`lineno`, :attr:`col_offset`, :attr:`end_lineno`, and :attr:`end_col_offset` "
"attributes. The :attr:`lineno` and :attr:`end_lineno` are the first and "
"last line numbers of source text span (1-indexed so the first line is line "
"1) and the :attr:`col_offset` and :attr:`end_col_offset` are the "
"corresponding UTF-8 byte offsets of the first and last tokens that generated "
"the node. The UTF-8 offset is recorded because the parser uses UTF-8 "
"internally."
msgstr ""
":class:`ast.expr` や :class:`ast.stmt` のサブクラスのインスタンスは :attr:"
"`lineno`, :attr:`col_offset`, :attr:`end_lineno`, および :attr:"
"`end_col_offset` 属性を持ちます。 :attr:`lineno` と :attr:`end_lineno` はソー"
"ステキストの範囲を最初と最後の行番号で表し (1 から数え始めるので、最初の行の"
"行番号は 1 となります)、 :attr:`col_offset` と :attr:`end_col_offset` はノー"
"ドが生成した最初と最後のトークンの UTF-8 バイトオフセットです。 UTF-8 オフ"
"セットはパーサが内部で使用するので記録されます。"
#: ../../library/ast.rst:91
msgid ""
"Note that the end positions are not required by the compiler and are "
"therefore optional. The end offset is *after* the last symbol, for example "
"one can get the source segment of a one-line expression node using "
"``source_line[node.col_offset : node.end_col_offset]``."
msgstr ""
"コンパイラは終了位置を必要としないことに注意してください。このため終了位置は"
"省略可能です。終了位置を示すオフセットは最後のシンボルの *後の位置* になりま"
"す。例えば一行で書かれた式のソースコードのセグメントは ``source_line[node."
"col_offset : node.end_col_offset]`` により取得できます。"
#: ../../library/ast.rst:96
msgid ""
"The constructor of a class :class:`ast.T` parses its arguments as follows:"
msgstr "クラス :class:`ast.T` のコンストラクタは引数を次のように解析します:"
#: ../../library/ast.rst:98
msgid ""
"If there are positional arguments, there must be as many as there are items "
"in :attr:`T._fields`; they will be assigned as attributes of these names."
msgstr ""
"位置引数があるとすれば、 :attr:`T._fields` にあるのと同じだけの個数が無ければ"
"なりません。これらの引数はそこにある名前を持った属性として割り当てられます。"
#: ../../library/ast.rst:100
msgid ""
"If there are keyword arguments, they will set the attributes of the same "
"names to the given values."
msgstr ""
"キーワード引数があるとすれば、それらはその名前の属性にその値を割り当てられま"
"す。"
#: ../../library/ast.rst:103
msgid ""
"For example, to create and populate an :class:`ast.UnaryOp` node, you could "
"use ::"
msgstr ""
"たとえば、 :class:`ast.UnaryOp` ノードを生成して属性を埋めるには、次のように"
"することができます ::"
#: ../../library/ast.rst:115
msgid "or the more compact ::"
msgstr "もしくはよりコンパクトにも書けます ::"
#: ../../library/ast.rst:122
msgid "Class :class:`ast.Constant` is now used for all constants."
msgstr ":class:`ast.Constant` が全ての定数に使われるようになりました。"
#: ../../library/ast.rst:126
msgid ""
"Simple indices are represented by their value, extended slices are "
"represented as tuples."
msgstr ""
"単純なインデックスはその値で表現され、幅を持つスライスはタプルで表現されま"
"す。"
#: ../../library/ast.rst:131
msgid ""
"Old classes :class:`ast.Num`, :class:`ast.Str`, :class:`ast.Bytes`, :class:"
"`ast.NameConstant` and :class:`ast.Ellipsis` are still available, but they "
"will be removed in future Python releases. In the meantime, instantiating "
"them will return an instance of a different class."
msgstr ""
"古いクラスである :class:`ast.Num`, :class:`ast.Str`, :class:`ast.Bytes`, :"
"class:`ast.NameConstant` および :class:`ast.Ellipsis` は現バージョンでは利用"
"可能ですが、将来の Python リリースで削除される予定です。それまでは、これらの"
"クラスをインスタンス化すると異なるクラスのインスタンスが返されます。"
#: ../../library/ast.rst:138
msgid ""
"Old classes :class:`ast.Index` and :class:`ast.ExtSlice` are still "
"available, but they will be removed in future Python releases. In the "
"meantime, instantiating them will return an instance of a different class."
msgstr ""
"古いクラスである :class:`ast.Index` と :class:`ast.ExtSlice` は現バージョンで"
"は利用可能ですが、将来の Python リリースで削除される予定です。それまでは、こ"
"れらのクラスをインスタンス化すると異なるクラスのインスタンスが返されます。"
#: ../../library/ast.rst:144
msgid ""
"The descriptions of the specific node classes displayed here were initially "
"adapted from the fantastic `Green Tree Snakes <https://greentreesnakes."
"readthedocs.io/en/latest/>`__ project and all its contributors."
msgstr ""
"ここに示されている特定のノードクラスについての記述は、素晴らしい `Green Tree "
"Snakes <https://greentreesnakes.readthedocs.io/en/latest/>`__ プロジェクトと"
"そのすべての貢献者の成果物をもとにしています。"
#: ../../library/ast.rst:150
msgid "Literals"
msgstr "リテラル"
#: ../../library/ast.rst:154
msgid ""
"A constant value. The ``value`` attribute of the ``Constant`` literal "
"contains the Python object it represents. The values represented can be "
"simple types such as a number, string or ``None``, but also immutable "
"container types (tuples and frozensets) if all of their elements are "
"constant."
msgstr ""
"定数です。 ``Constant`` リテラルの ``value`` 属性は定数値を表す Python オブ"
"ジェクトを保持します。定数として表現される値は数値、文字列、または ``None`` "
"のような単純な型のほかに、全ての要素が定数であるイミュータブルなコンテナ型 "
"(tuples および frozensets) も設定可能です。"
#: ../../library/ast.rst:168
msgid ""
"Node representing a single formatting field in an f-string. If the string "
"contains a single formatting field and nothing else the node can be isolated "
"otherwise it appears in :class:`JoinedStr`."
msgstr ""
"このノードは f-string における単一の書式指定置換フィールドを表現します。文字"
"列が単一の置換フィールドしか持たず、他に何も含まない場合は、ノードは単独で存"
"在できます。そうでない場合は :class:`JoinedStr` の一部としてあらわれます。"
#: ../../library/ast.rst:172
msgid ""
"``value`` is any expression node (such as a literal, a variable, or a "
"function call)."
msgstr ""
"``value`` は式ツリーのノードのいずれか (リテラル、変数、関数呼び出しなど) で"
"す。"
#: ../../library/ast.rst:174
msgid "``conversion`` is an integer:"
msgstr "``conversion`` は整数です:"
#: ../../library/ast.rst:176
msgid "-1: no formatting"
msgstr "-1: 書式指定なし"
#: ../../library/ast.rst:177
msgid "115: ``!s`` string formatting"
msgstr "115: ``!s`` 文字列書式指定"
#: ../../library/ast.rst:178
msgid "114: ``!r`` repr formatting"
msgstr "114: ``!r`` repr 書式指定"
#: ../../library/ast.rst:179
msgid "97: ``!a`` ascii formatting"
msgstr "97: ``!a`` ascii 書式指定"
#: ../../library/ast.rst:181
msgid ""
"``format_spec`` is a :class:`JoinedStr` node representing the formatting of "
"the value, or ``None`` if no format was specified. Both ``conversion`` and "
"``format_spec`` can be set at the same time."
msgstr ""
"``format_spec`` は値の書式指定を表現する :class:`JoinedStr` ノード、もしくは"
"書式指定がない場合は ``None`` です。 ``conversion`` と ``format_spec`` を同時"
"に設定することができます。"
#: ../../library/ast.rst:188
msgid ""
"An f-string, comprising a series of :class:`FormattedValue` and :class:"
"`Constant` nodes."
msgstr ""
":class:`FormattedValue` ノードと :class:`Constant` ノードの集まりからなる f-"
"string です。"
#: ../../library/ast.rst:217
msgid ""
"A list or tuple. ``elts`` holds a list of nodes representing the elements. "
"``ctx`` is :class:`Store` if the container is an assignment target (i.e. "
"``(x,y)=something``), and :class:`Load` otherwise."
msgstr ""
"リストまたはタプルをあらわします。 ``elts`` は内包する要素を表現するノードの"
"リストを保持します。 ``ctx`` はコンテナが代入のターゲットである場合 (たとえ"
"ば ``(x,y)=something`` のような場合) は :class:`Store` であり、そうでない場合"
"は :class:`Load` です。"
#: ../../library/ast.rst:243
msgid "A set. ``elts`` holds a list of nodes representing the set's elements."
msgstr ""
"集合 (set) をあらわします。 ``elts`` は集合の各要素を表現するノードのリストを"
"保持します。"
#: ../../library/ast.rst:258
msgid ""
"A dictionary. ``keys`` and ``values`` hold lists of nodes representing the "
"keys and the values respectively, in matching order (what would be returned "
"when calling :code:`dictionary.keys()` and :code:`dictionary.values()`)."
msgstr ""
"辞書をあらわします。 ``keys`` と ``values`` はそれぞれキーと値のノードのリス"
"ト を順序が一致した形で (それぞれ :code:`dictionary.keys()` と :code:"
"`dictionary.values()` を呼び出したときに返される順序で) 保持します。"
#: ../../library/ast.rst:262
msgid ""
"When doing dictionary unpacking using dictionary literals the expression to "
"be expanded goes in the ``values`` list, with a ``None`` at the "
"corresponding position in ``keys``."
msgstr ""
"辞書リテラルを使って辞書を展開した場合、展開された式ツリーにおいて辞書は "
"``values`` リストに入り、 ``keys`` の対応する位置には ``None`` が入ります。"
#: ../../library/ast.rst:280
msgid "Variables"
msgstr "変数"
#: ../../library/ast.rst:284
msgid ""
"A variable name. ``id`` holds the name as a string, and ``ctx`` is one of "
"the following types."
msgstr ""
"変数名をあらわします。 ``id`` は変数名を文字列で保持し、 ``ctx`` は以下に示す"
"型のいずれかです。"
#: ../../library/ast.rst:292
msgid ""
"Variable references can be used to load the value of a variable, to assign a "
"new value to it, or to delete it. Variable references are given a context to "
"distinguish these cases."
msgstr ""
"変数の参照は変数の値をロードするか、新しい値を割り当てるか、または値を削除す"
"るために使うことができます。変数の参照はこれら3つの場合を区別するためのコンテ"
"キストによって与えられます。"
#: ../../library/ast.rst:325
msgid ""
"A ``*var`` variable reference. ``value`` holds the variable, typically a :"
"class:`Name` node. This type must be used when building a :class:`Call` node "
"with ``*args``."
msgstr ""
"``*var`` 形式の変数の参照をあらわします。 ``value`` は変数、典型的には :"
"class:`Name` ノード、を保持します。この型は ``*args`` を伴う関数呼び出しノー"
"ド :class:`Call` を構築する際に使用します。 "
#: ../../library/ast.rst:348
msgid "Expressions"
msgstr "式 (expression)"
#: ../../library/ast.rst:352
msgid ""
"When an expression, such as a function call, appears as a statement by "
"itself with its return value not used or stored, it is wrapped in this "
"container. ``value`` holds one of the other nodes in this section, a :class:"
"`Constant`, a :class:`Name`, a :class:`Lambda`, a :class:`Yield` or :class:"
"`YieldFrom` node."
msgstr ""
"関数呼び出しのような式がそれ自身で文となり、戻り値が使われないかまたは保存さ"
"れないとき、その式はこのコンテナでラップされます。 ``value`` はこの節で説明す"
"る他のノード、 :class:`Constant` ノード、 :class:`Name` ノード、 :class:"
"`Lambda` ノード :class:`Yield` ノードまたは :class:`YieldFrom` ノードのいずれ"
"かを保持します。"
#: ../../library/ast.rst:371
msgid ""
"A unary operation. ``op`` is the operator, and ``operand`` any expression "
"node."
msgstr ""
"単項演算をあらわします。 ``op`` は演算子で、 ``operand`` は任意の式ツリーの"
"ノードです。"
#: ../../library/ast.rst:380
msgid ""
"Unary operator tokens. :class:`Not` is the ``not`` keyword, :class:`Invert` "
"is the ``~`` operator."
msgstr ""
"単項演算の演算子をあらわします。 :class:`Not` は論理否定キーワード ``not`` で"
"あり、 :class:`Invert` はビット反転演算子 ``~`` です。"
#: ../../library/ast.rst:394
msgid ""
"A binary operation (like addition or division). ``op`` is the operator, and "
"``left`` and ``right`` are any expression nodes."
msgstr ""
"(加算や減算のような) 二項演算をあらわします。 ``op`` は演算子、 ``left`` と "
"``right`` は任意の式ツリーのノードです。"
#: ../../library/ast.rst:421
msgid "Binary operator tokens."
msgstr "二項演算の演算子をあらわします。"
#: ../../library/ast.rst:426
msgid ""
"A boolean operation, 'or' or 'and'. ``op`` is :class:`Or` or :class:`And`. "
"``values`` are the values involved. Consecutive operations with the same "
"operator, such as ``a or b or c``, are collapsed into one node with several "
"values."
msgstr ""
"'or' や 'and' のような論理演算をあらわします。 ``op`` は :class:`Or` または :"
"class:`And` です。 ``values`` は必要な値のリストです。 ``a or b or c`` のよう"
"に同じ演算子を使う連続した演算は、複数の値を持った単一のノードとして表現され"
"ます。"
#: ../../library/ast.rst:431
msgid "This doesn't include ``not``, which is a :class:`UnaryOp`."
msgstr "``not`` は単項演算 :class:`UnaryOp` のため、ここには含まれません。"
#: ../../library/ast.rst:447
msgid "Boolean operator tokens."
msgstr "論理演算の演算子をあらわします。"
#: ../../library/ast.rst:452
msgid ""
"A comparison of two or more values. ``left`` is the first value in the "
"comparison, ``ops`` the list of operators, and ``comparators`` the list of "
"values after the first element in the comparison."
msgstr ""
"2つ以上の値の比較をあらわします。 ``left`` 比較の中の最初の値、``ops`` は演算"
"子のリスト、 ``comparators`` は2つ目以降の値のリストです。"
#: ../../library/ast.rst:481
msgid "Comparison operator tokens."
msgstr "比較演算の演算子をあらわします。"
#: ../../library/ast.rst:486
msgid ""
"A function call. ``func`` is the function, which will often be a :class:"
"`Name` or :class:`Attribute` object. Of the arguments:"
msgstr ""
"関数呼び出しをあらわします。 ``func`` は関数で、多くの場合 :class:`Name` また"
"は :class:`Attribute` のオブジェクトです。 関数呼び出しの引数:"
#: ../../library/ast.rst:489
msgid "``args`` holds a list of the arguments passed by position."
msgstr "``args`` は位置引数のリストを保持します。 "
#: ../../library/ast.rst:490
msgid ""
"``keywords`` holds a list of :class:`keyword` objects representing arguments "
"passed by keyword."
msgstr ""
"``keywords`` は :class:`keyword` クラスのオブジェクトのリスト保持し、キーワー"
"ド引数をあらわします。"
#: ../../library/ast.rst:493
msgid ""
"When creating a ``Call`` node, ``args`` and ``keywords`` are required, but "
"they can be empty lists. ``starargs`` and ``kwargs`` are optional."
msgstr ""
"``Call`` ノードを生成するときに ``args`` と ``keywords`` は必須ですが、空のリ"
"ストであってもかまいません。 ``starargs`` と ``kwargs`` はオプション引数で"
"す。"
#: ../../library/ast.rst:517
msgid ""
"A keyword argument to a function call or class definition. ``arg`` is a raw "
"string of the parameter name, ``value`` is a node to pass in."
msgstr ""
"関数呼び出しまたはクラス定義のキーワード引数をあらわします。 ``arg`` はパラ"
"メータ名をあらわす文字列、 ``value`` は引数に渡す値をあらわすノードです。"
#: ../../library/ast.rst:523
msgid ""
"An expression such as ``a if b else c``. Each field holds a single node, so "
"in the following example, all three are :class:`Name` nodes."
msgstr ""
"``a if b else c`` のような式をあらわします。各フィールドは単一のノードを保持"
"します。以下の例では、3つの式ノードはすべて :class:`Name` ノードです。"
#: ../../library/ast.rst:538
msgid ""
"Attribute access, e.g. ``d.keys``. ``value`` is a node, typically a :class:"
"`Name`. ``attr`` is a bare string giving the name of the attribute, and "
"``ctx`` is :class:`Load`, :class:`Store` or :class:`Del` according to how "
"the attribute is acted on."
msgstr ""
"たとえば ``d.keys`` のような属性へのアクセスです。 ``value`` はノードで、典型"
"的には :class:`Name` です。 ``attr`` は属性名を与える生の文字列で、 ``ctx`` "
"はその属性がどのように振る舞うかに応じて :class:`Load`、 :class:`Store` また"
"は :class:`Del` のいずれかです。"
#: ../../library/ast.rst:555
msgid ""
"A named expression. This AST node is produced by the assignment expressions "
"operator (also known as the walrus operator). As opposed to the :class:"
"`Assign` node in which the first argument can be multiple nodes, in this "
"case both ``target`` and ``value`` must be single nodes."
msgstr ""
"代入式です。この AST ノードは代入式演算子(ウォルラス演算子、または「セイウチ"
"演算子」としても知られています)によって生成されます。第一引数が複数のノード"
"であってもよい :class:`Assign` ノードと異なり、このノードの場合は ``target`` "
"と ``value`` の両方が単一のノードでなければなりません。"
#: ../../library/ast.rst:570
msgid "Subscripting"
msgstr "配列要素の参照 (Subscripting)"
#: ../../library/ast.rst:574
msgid ""
"A subscript, such as ``l[1]``. ``value`` is the subscripted object (usually "
"sequence or mapping). ``slice`` is an index, slice or key. It can be a :"
"class:`Tuple` and contain a :class:`Slice`. ``ctx`` is :class:`Load`, :class:"
"`Store` or :class:`Del` according to the action performed with the subscript."
msgstr ""
"``l[1]`` のような配列要素の参照をあらわします。 ``value`` は参照元のオブジェ"
"クトです (通常シーケンス型またはマッピング型)。 ``slice`` はインデックス、ス"
"ライス、またはキーです。 :class:`Slice` を含む :class:`Tuple` でもかまいませ"
"ん。 ``ctx`` は要素の参照により実行されるアクションに応じて :class:`Load`、 :"
"class:`Store` または :class:`Del` のいずれかです。"
#: ../../library/ast.rst:598
msgid ""
"Regular slicing (on the form ``lower:upper`` or ``lower:upper:step``). Can "
"occur only inside the *slice* field of :class:`Subscript`, either directly "
"or as an element of :class:`Tuple`."
msgstr ""
"基本的なスライス操作 (``lower:upper`` や ``lower:upper:step`` の形式) をあら"
"わします。 :class:`Subscript` の *slice* フィールドでの直接指定か、または :"
"class:`Tuple` の要素として指定する場合のみ利用可能です。"
#: ../../library/ast.rst:615
msgid "Comprehensions"
msgstr "内包表記 (Comprehension)"
#: ../../library/ast.rst:622
msgid ""
"List and set comprehensions, generator expressions, and dictionary "
"comprehensions. ``elt`` (or ``key`` and ``value``) is a single node "
"representing the part that will be evaluated for each item."
msgstr ""
"リストや集合の内包表記、ジェネレータ、および辞書の内包表記です。 ``elt`` (ま"
"たは ``key`` と ``value``) は各要素として評価される部品をあらわす単一のノード"
"です。"
#: ../../library/ast.rst:626
msgid "``generators`` is a list of :class:`comprehension` nodes."
msgstr "``generators`` は :class:`comprehension` ノードのリストです。"
#: ../../library/ast.rst:668
msgid ""
"One ``for`` clause in a comprehension. ``target`` is the reference to use "
"for each element - typically a :class:`Name` or :class:`Tuple` node. "
"``iter`` is the object to iterate over. ``ifs`` is a list of test "
"expressions: each ``for`` clause can have multiple ``ifs``."
msgstr ""
"内包表記におけるひとつの ``for`` 節をあらわします。 ``target`` は各要素への参"
"照です - 典型的には :class:`Name` または :class:`Tuple` ノードです。 "
"``iter`` はイテレートする対象のオブジェクトです。 ``ifs`` は条件節のリストで"
"す: 各 ``for`` 節は複数の ``ifs`` を持つことができます。"
#: ../../library/ast.rst:673
msgid ""
"``is_async`` indicates a comprehension is asynchronous (using an ``async "
"for`` instead of ``for``). The value is an integer (0 or 1)."
msgstr ""
"``is_async`` は内包表記が非同期であることを示します (``async for`` を "
"``for`` の代わりに使います)。値は整数です (0 または 1)。"
#: ../../library/ast.rst:739
msgid "Statements"
msgstr "文 (Statements)"
#: ../../library/ast.rst:743
msgid ""
"An assignment. ``targets`` is a list of nodes, and ``value`` is a single "
"node."
msgstr ""
"代入です。 ``targets`` はノードのリスト、 ``value`` は単一のノードです。"
#: ../../library/ast.rst:745
msgid ""
"Multiple nodes in ``targets`` represents assigning the same value to each. "
"Unpacking is represented by putting a :class:`Tuple` or :class:`List` within "
"``targets``."
msgstr ""
"``targets`` の複数のノードは、それぞれに対して同じ値を代入することをあらわし"
"ます。分割代入は ``targets`` 内に :class:`Tuple` または :class:`List` を置く"
"ことで表現されます。"
#: ../../library/ast.rst:751 ../../library/ast.rst:1038
#: ../../library/ast.rst:1211 ../../library/ast.rst:1632
msgid ""
"``type_comment`` is an optional string with the type annotation as a comment."
msgstr ""
"``type_comment`` はコメントとして型アノテーションをあらわすオプション文字列で"
"す。"
#: ../../library/ast.rst:781
msgid ""
"An assignment with a type annotation. ``target`` is a single node and can be "
"a :class:`Name`, a :class:`Attribute` or a :class:`Subscript`. "
"``annotation`` is the annotation, such as a :class:`Constant` or :class:"
"`Name` node. ``value`` is a single optional node. ``simple`` is a boolean "
"integer set to True for a :class:`Name` node in ``target`` that do not "
"appear in between parenthesis and are hence pure names and not expressions."
msgstr ""
"型アノテーションを伴う代入です。 ``target`` は単一のノードで、 :class:"
"`Name`, :class:`Attribute` または :class:`Subscript` のいずれかです。 "
"``annotation`` は :class:`Constant` や :class:`Name` node のようなアノテー"
"ションです。 ``value`` はオプションで、代入する値を単一のノードであらわしたも"
"のです。 ``simple`` 真偽値と解釈される整数で、 ``target`` の :class:`Name` "
"ノードが丸かっこに囲まれておらず、したがって式ではなく純粋な名前である場合に "
"True を設定します。"
#: ../../library/ast.rst:836
msgid ""
"Augmented assignment, such as ``a += 1``. In the following example, "
"``target`` is a :class:`Name` node for ``x`` (with the :class:`Store` "
"context), ``op`` is :class:`Add`, and ``value`` is a :class:`Constant` with "
"value for 1."
msgstr ""
"``a += 1`` のような累積代入をあらわします。下記の例では、 ``target`` は (:"
"class:`Store` コンテキストを伴う) ``x`` のための :class:`Name` ノード、 "
"``op`` は :class:`Add` 演算子、そして ``value`` は定数1をあらわす :class:"
"`Constant` ノードです。"
#: ../../library/ast.rst:841
msgid ""
"The ``target`` attribute cannot be of class :class:`Tuple` or :class:`List`, "
"unlike the targets of :class:`Assign`."
msgstr ""
":class:`Assign` と異なり、 ``target`` 属性は class :class:`Tuple` や :class:"
"`List` であってはいけません。"
#: ../../library/ast.rst:858
msgid ""
"A ``raise`` statement. ``exc`` is the exception object to be raised, "
"normally a :class:`Call` or :class:`Name`, or ``None`` for a standalone "
"``raise``. ``cause`` is the optional part for ``y`` in ``raise x from y``."
msgstr ""
"``raise`` 文をあらわします。 ``exc`` は送出される例外オブジェクトで、通常は :"
"class:`Call` または :class:`Name`、 もしくは単独の ``raise`` では ``None`` を"
"指定します。 ``cause`` はオプションで、 ``raise x from y`` の ``y`` にあたり"
"ます。"
#: ../../library/ast.rst:875
msgid ""
"An assertion. ``test`` holds the condition, such as a :class:`Compare` node. "
"``msg`` holds the failure message."
msgstr ""
"アサーションです。 ``test`` は :class:`Compare` ノードなどのような条件を保持"
"します。 ``msg`` は失敗した時のメッセージを保持します。"
#: ../../library/ast.rst:891
msgid ""
"Represents a ``del`` statement. ``targets`` is a list of nodes, such as :"
"class:`Name`, :class:`Attribute` or :class:`Subscript` nodes."
msgstr ""
"``del`` 文をあらわします。 ``targets`` は :class:`Name`, :class:"
"`Attribute`, :class:`Subscript` などのノードのリストです。"
#: ../../library/ast.rst:909
msgid "A ``pass`` statement."
msgstr "``pass`` 文をあらわします。"
#: ../../library/ast.rst:920
msgid ""
"Other statements which are only applicable inside functions or loops are "
"described in other sections."
msgstr ""
"関数またはループの内部でのみ適用可能な他の文は、別のセクションで説明します。"
#: ../../library/ast.rst:924
msgid "Imports"
msgstr "インポート"
#: ../../library/ast.rst:928
msgid "An import statement. ``names`` is a list of :class:`alias` nodes."
msgstr "インポート文です。 ``names`` は :class:`alias` ノードのリストです。"
#: ../../library/ast.rst:945
msgid ""
"Represents ``from x import y``. ``module`` is a raw string of the 'from' "
"name, without any leading dots, or ``None`` for statements such as ``from . "
"import foo``. ``level`` is an integer holding the level of the relative "
"import (0 means absolute import)."
msgstr ""
"``from x import y`` をあらわします。 ``module`` は 'from' でインポートする先"
"頭がドットでないモジュール名をあらわす文字列か、または ``from . import foo`` "
"のような構文の場合は ``None`` を指定します。 ``level`` は相対インポートのレベ"
"ルを表す整数を保持します (0 は絶対インポートを意味します)。"
#: ../../library/ast.rst:967
msgid ""
"Both parameters are raw strings of the names. ``asname`` can be ``None`` if "
"the regular name is to be used."
msgstr ""
"いずれのパラメータも名前をあらわす生の文字列です。 ``asname`` は標準の名前を"
"使う場合は ``None`` を指定できます。"
#: ../../library/ast.rst:984
msgid "Control flow"
msgstr "制御フロー"
#: ../../library/ast.rst:987
msgid ""
"Optional clauses such as ``else`` are stored as an empty list if they're not "
"present."
msgstr ""
"``else`` 節のようなオプションの節が存在しない場合は、空のリストとして保存され"
"ます。"
#: ../../library/ast.rst:992
msgid ""
"An ``if`` statement. ``test`` holds a single node, such as a :class:"
"`Compare` node. ``body`` and ``orelse`` each hold a list of nodes."
msgstr ""
"``if`` 文です。 ``test`` は :class:`Compare` ノードなどの単一のノードを保持し"
"ます。 ``body`` と ``orelse`` はそれぞれノードのリストを保持します。"
#: ../../library/ast.rst:995
msgid ""
"``elif`` clauses don't have a special representation in the AST, but rather "
"appear as extra :class:`If` nodes within the ``orelse`` section of the "
"previous one."
msgstr ""
"``elif`` 節は AST において固有の表現を持たず、先行する節をあらわすノードの "
"``orelse`` セクションに追加の :class:`If` ノードとして現れます。"
#: ../../library/ast.rst:1030
msgid ""
"A ``for`` loop. ``target`` holds the variable(s) the loop assigns to, as a "
"single :class:`Name`, :class:`Tuple` or :class:`List` node. ``iter`` holds "
"the item to be looped over, again as a single node. ``body`` and ``orelse`` "
"contain lists of nodes to execute. Those in ``orelse`` are executed if the "
"loop finishes normally, rather than via a ``break`` statement."
msgstr ""
"``for`` ループです。 ``target`` はループが割り当てる単一または複数の変数を :"
"class:`Name`, :class:`Tuple` または :class:`List` のいずれかを単一のノードで"
"保持します。 ``iter`` はループ対象の変数を、同じく単一のノードで保持します。 "
"``body`` と ``orelse`` は実行するノードのリストを含んでいます。 ``orelse`` に"
"含まれるノードは、ループが ``break`` 文によって中断せず、正常終了した場合に実"
"行されます。"
#: ../../library/ast.rst:1064
msgid ""
"A ``while`` loop. ``test`` holds the condition, such as a :class:`Compare` "
"node."
msgstr ""
"``while`` ループです。 ``test`` は :class:`Compare` のような条件をあらわす"
"ノードを保持します。"
#: ../../library/ast.rst:1091
msgid "The ``break`` and ``continue`` statements."
msgstr "``break`` 文および ``continue`` 文です。"
#: ../../library/ast.rst:1126
msgid ""
"``try`` blocks. All attributes are list of nodes to execute, except for "
"``handlers``, which is a list of :class:`ExceptHandler` nodes."
msgstr ""
"``try`` ブロックです。 :class:`ExceptHandler` ノードのリストである "
"``handlers`` を除き、全ての属性はそれぞれの節で実行するノードのリストです。"
#: ../../library/ast.rst:1172
msgid ""
"A single ``except`` clause. ``type`` is the exception type it will match, "
"typically a :class:`Name` node (or ``None`` for a catch-all ``except:`` "
"clause). ``name`` is a raw string for the name to hold the exception, or "
"``None`` if the clause doesn't have ``as foo``. ``body`` is a list of nodes."
msgstr ""
"単一の ``except`` 節をあらわします。 ``type`` はこの節にマッチする例外のタイ"
"プで、典型的には :class:`Name` ノードです (``None`` を指定すると全ての例外を"
"キャッチする ``except:`` 節をあらわします)。 ``name`` は例外オブジェクトを保"
"持する変数の名前をあらわす生の文字列で、 ``as foo`` を持たない節の場合は "
"``None`` を指定します。 ``body`` はノードのリストです。"
#: ../../library/ast.rst:1206
msgid ""
"A ``with`` block. ``items`` is a list of :class:`withitem` nodes "
"representing the context managers, and ``body`` is the indented block inside "
"the context."
msgstr ""
"``with`` ブロックです。 ``items`` は :class:`withitem` ノードのリストで、コン"
"テキストマネージャのリストをあらわします。また ``body`` はコンテキスト内にイ"
"ンデントされたブロックです。"
#: ../../library/ast.rst:1216
msgid ""
"A single context manager in a ``with`` block. ``context_expr`` is the "
"context manager, often a :class:`Call` node. ``optional_vars`` is a :class:"
"`Name`, :class:`Tuple` or :class:`List` for the ``as foo`` part, or ``None`` "
"if that isn't used."
msgstr ""
"``with`` ブロックにおける単一のコンテキストマネージャをあらわします。 "
"``context_expr`` はコンテキストマネージャで、しばしば :class:`Call` ノードが"
"設定されます。 ``optional_vars`` は ``as foo`` に相当する :class:`Name`, :"
"class:`Tuple` または :class:`List` のいずれかのノードか、または、この部分が不"
"要な場合は ``None`` を設定します。"
#: ../../library/ast.rst:1249
msgid "Pattern matching"
msgstr ""
#: ../../library/ast.rst:1254
msgid ""
"A ``match`` statement. ``subject`` holds the subject of the match (the "
"object that is being matched against the cases) and ``cases`` contains an "
"iterable of :class:`match_case` nodes with the different cases."
msgstr ""
#: ../../library/ast.rst:1260
msgid ""
"A single case pattern in a ``match`` statement. ``pattern`` contains the "
"match pattern that the subject will be matched against. Note that the :class:"
"`AST` nodes produced for patterns differ from those produced for "
"expressions, even when they share the same syntax."
msgstr ""
#: ../../library/ast.rst:1265
msgid ""
"The ``guard`` attribute contains an expression that will be evaluated if the "
"pattern matches the subject."
msgstr ""
#: ../../library/ast.rst:1268
msgid ""
"``body`` contains a list of nodes to execute if the pattern matches and the "
"result of evaluating the guard expression is true."
msgstr ""
#: ../../library/ast.rst:1311
msgid ""
"A match literal or value pattern that compares by equality. ``value`` is an "
"expression node. Permitted value nodes are restricted as described in the "
"match statement documentation. This pattern succeeds if the match subject is "
"equal to the evaluated value."
msgstr ""
#: ../../library/ast.rst:1338
msgid ""
"A match literal pattern that compares by identity. ``value`` is the "
"singleton to be compared against: ``None``, ``True``, or ``False``. This "
"pattern succeeds if the match subject is the given constant."
msgstr ""
#: ../../library/ast.rst:1363
msgid ""
"A match sequence pattern. ``patterns`` contains the patterns to be matched "
"against the subject elements if the subject is a sequence. Matches a "
"variable length sequence if one of the subpatterns is a ``MatchStar`` node, "
"otherwise matches a fixed length sequence."
msgstr ""
#: ../../library/ast.rst:1394
msgid ""
"Matches the rest of the sequence in a variable length match sequence "
"pattern. If ``name`` is not ``None``, a list containing the remaining "
"sequence elements is bound to that name if the overall sequence pattern is "
"successful."
msgstr ""
#: ../../library/ast.rst:1434
msgid ""
"A match mapping pattern. ``keys`` is a sequence of expression nodes. "
"``patterns`` is a corresponding sequence of pattern nodes. ``rest`` is an "
"optional name that can be specified to capture the remaining mapping "
"elements. Permitted key expressions are restricted as described in the match "
"statement documentation."
msgstr ""
#: ../../library/ast.rst:1440
msgid ""
"This pattern succeeds if the subject is a mapping, all evaluated key "
"expressions are present in the mapping, and the value corresponding to each "
"key matches the corresponding subpattern. If ``rest`` is not ``None``, a "
"dict containing the remaining mapping elements is bound to that name if the "
"overall mapping pattern is successful."
msgstr ""
#: ../../library/ast.rst:1480
msgid ""
"A match class pattern. ``cls`` is an expression giving the nominal class to "
"be matched. ``patterns`` is a sequence of pattern nodes to be matched "
"against the class defined sequence of pattern matching attributes. "
"``kwd_attrs`` is a sequence of additional attributes to be matched "
"(specified as keyword arguments in the class pattern), ``kwd_patterns`` are "
"the corresponding patterns (specified as keyword values in the class "
"pattern)."
msgstr ""
#: ../../library/ast.rst:1487
msgid ""
"This pattern succeeds if the subject is an instance of the nominated class, "
"all positional patterns match the corresponding class-defined attributes, "
"and any specified keyword attributes match their corresponding pattern."
msgstr ""
#: ../../library/ast.rst:1491
msgid ""
"Note: classes may define a property that returns self in order to match a "
"pattern node against the instance being matched. Several builtin types are "
"also matched that way, as described in the match statement documentation."
msgstr ""
#: ../../library/ast.rst:1544
msgid ""
"A match \"as-pattern\", capture pattern or wildcard pattern. ``pattern`` "
"contains the match pattern that the subject will be matched against. If the "
"pattern is ``None``, the node represents a capture pattern (i.e a bare name) "
"and will always succeed."
msgstr ""
#: ../../library/ast.rst:1549
msgid ""
"The ``name`` attribute contains the name that will be bound if the pattern "
"is successful. If ``name`` is ``None``, ``pattern`` must also be ``None`` "
"and the node represents the wildcard pattern."
msgstr ""
#: ../../library/ast.rst:1585
msgid ""
"A match \"or-pattern\". An or-pattern matches each of its subpatterns in "
"turn to the subject, until one succeeds. The or-pattern is then deemed to "
"succeed. If none of the subpatterns succeed the or-pattern fails. The "
"``patterns`` attribute contains a list of match pattern nodes that will be "
"matched against the subject."
msgstr ""
#: ../../library/ast.rst:1617
msgid "Function and class definitions"
msgstr "関数およびクラス定義"
#: ../../library/ast.rst:1621
msgid "A function definition."
msgstr "関数定義です。"
#: ../../library/ast.rst:1623
msgid "``name`` is a raw string of the function name."
msgstr "``name`` は関数名をあらわす生の文字列です。"
#: ../../library/ast.rst:1624
msgid "``args`` is an :class:`arguments` node."
msgstr "``args`` は引数をあらわす :class:`arguments` ノードです。"
#: ../../library/ast.rst:1625
msgid "``body`` is the list of nodes inside the function."
msgstr "``body`` は関数の本体をあらわすノードのリストです。"
#: ../../library/ast.rst:1626
msgid ""
"``decorator_list`` is the list of decorators to be applied, stored outermost "
"first (i.e. the first in the list will be applied last)."
msgstr ""
"``decorator_list`` は関数に適用されるデコレータのリストで、外側のデコレータが"
"リストの先頭に保存されます (すなわち、リストの先頭にあるデコレータが最後に適"
"用されます)。"
#: ../../library/ast.rst:1628
msgid "``returns`` is the return annotation."
msgstr "``returns`` は戻り値に対する注釈です。"
#: ../../library/ast.rst:1637
msgid ""
"``lambda`` is a minimal function definition that can be used inside an "
"expression. Unlike :class:`FunctionDef`, ``body`` holds a single node."
msgstr ""
"``lambda`` は式の中で使うことができる最小限の関数定義です。 :class:"
"`FunctionDef` ノードと異なり、 ``body`` は単一のノードとなります。"
#: ../../library/ast.rst:1661